為什么輸入http://idcbgp.cn/以后打開(kāi)的不是寬400高500的窗口?
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=utf8"/>? ?
??
?</head>?
?<body>?
? <input name="button" type="button" value="新窗口打開(kāi)網(wǎng)站" onclick="openWindow()" />?
?</body>
?<script type="text/javascript">??
? ? function openWindow(){
? ? ? debugger
? ? ? ? var myweb=confirm("是否打開(kāi)新窗口")
? ? ? ? if(myweb==true)
? ? ? ? {rec2();}
? ? ? ? else
? ? ? ? {document.write("不打開(kāi)新窗口");}
? ? }
? ? // 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)
? ? function rec2(){
? ? ? ? var mywebopen=prompt("輸入打開(kāi)的網(wǎng)址");
? ? ? ? if(mywebopen=="http://idcbgp.cn/")
? ? ? { window.open('http://idcbgp.cn/','_self','height=500 width=400 menubar=no,toolbar=no');}
? ? }
? ??
? ? // 通過(guò)輸入對(duì)話(huà)框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ?
? ? //打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
? ??
? ??
? </script>?
</html>
2021-08-09
首先應(yīng)該是blank而不是self,因?yàn)閟elf用的是本身窗口的格式,所以再設(shè)置高寬就沒(méi)用,另外就是瀏覽器不能是全屏,要不然無(wú)論設(shè)置什么寬高,都是全屏的。