提交后打開新窗口尺寸不對,但記事本存html文件就可以
<!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 i=confirm("請確認是否要離開本頁面?");
? ????? if (i==true){
i=prompt("請輸入您要打開的網址","http://www.xianlaiwan.cn/");
? ? ? ????????? if (i!=null){
i=window.open(i,"_blank","width=400,height=500,menubar=no,toolbar=no");
}
}
}
? ??
? ??
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
2020-03-06
取消賦值給i,直接寫
看能不能解決你的問題。