重復(fù)出現(xiàn)提示框 無跳轉(zhuǎn)
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??
? <script type="text/javascript"> ?
? ??
? ? function openWindow(){
? ? ? ??
? ? ? ? var mymessage=confirm("是否打開新窗口?");
? ? ? ? if(mymessage==true)
? ? ? ? {
? ? ? ? ? ? window.open('http://idcbgp.cn/','_blank','width=400,height=500,menubar=no,toolbar=no');
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? alert("打開失??!")
? ? ? ? }
? ? }
? ??
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2016-06-22
經(jīng)測試,代碼無問題,不出現(xiàn)跳轉(zhuǎn)的原因可能是瀏覽器限制了彈框;chrome下,設(shè)置->高級設(shè)置->內(nèi)容設(shè)置->彈出式窗口。另外,你的代碼中沒有提示框的代碼,估計貼錯了代碼。
<!DOCTYPE html>
<html>
?<head>
? <meta charset="utf-8"/>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??
? <script type="text/javascript">?
? function openWindow(){?
? ? ? ? var isOpen = confirm("是否確認(rèn)打開?");
? ? ? ? ?if(isOpen?=== true){
? ? ? ? ? ? var site = prompt("打開的網(wǎng)址:","http://idcbgp.cn");
? ? ? ? window.open(site,"_blank","width=400,height=500,menubar=no,toolbar=no");
? ? ? ? }
? }
? </script>?
?</head>?
?<body>?
? ? ? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>