我想在點擊時打開一個窗口,但是我想在當前窗口後面打開它,或者當新窗口打開時它應該最小化本身。我做了一個功能,但它實際上沒有工作。使用Javascript/jQuery在當前窗口後面打開一個窗口
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function wn(){
var mm=window.open('http://www.google.com','newwindow','width=200, height=200', "_blank");
}
</script>
</head>
<body>
<a href="#" onclick="wn()">click</a>
</body>
聽起來像危險的那些點擊,煩人,彈出式廣告... – dda 2012-07-10 05:36:39
谷歌「背後彈出式窗口。 「基本上你是window.open,接着是window.focus。 – 2012-07-10 05:47:08
GGG:它不工作 – Carlos 2012-07-10 09:26:14