無論是點確認還是取消都是在新窗口中打開???
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"> ??
? <script type="text/javascript"> ?
? ? var openwindow=confirm("新窗口中打開網站?");
? ? // 新窗口打開時彈出確認框,是否打開
? ? if(openwindow=="true"){
? ? ? ? window.open("http://idcbgp.cn","_blank","width=400px,height=500,menubar=no,toolbar=no");
? ? // 通過輸入對話框,確定打開的網址,默認為 http://idcbgp.cn/,打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? } else{
? ? ? ? window.open("http://idcbgp.cn","_selft","width=400px,height=500,menubar=no,toolbar=no");
? ??
? ? } ?
? ??
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網站" onclick="openWindow()" >?
?</body>
</html>
2015-04-01
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"> ??
?</head>?
?<body>?
?<input type="button" value="新窗口打開網站" onclick="openWindow()" >?
? <script type="text/javascript"> ?
? ? var openwindow=confirm("open new tab ?");
? ? if(openwindow==true)
{window.open("http://idcbgp.cn","_blank","width=400px,height=500,menubar=no,toolbar=no");}
else
? ? ? ? {pass;}
? </script>?
?</body>
</html>
2015-04-01
用火狐瀏覽器 ?不要用屏蔽插件
2015-04-01
if(openwindow=="true") 這里的true是布爾值 不是字符 ? 去掉雙引號就可以了
謝謝 ? 給好評哦