為什么出現(xiàn)網(wǎng)頁丟失?
<!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 a=confirm("open?");
? ? ? ? ?if(a==true){
? ? ? ? ? ? ?var b=prompt("輸入網(wǎng)址","http://idcbgp.cn");
? ? ? ? ? ? ?if(b!=null){
? ? ? ? ? ? ? ? ?window.open('b','width=400,height=500,menubar=no,toolbar=no')
? ? ? ? ? ? ?}
? ? ? ? ? ? ?else{alert("bye");}
? ? ? ? ?}
? ? ? ? ?else{alert("bye");}
? ? ?
?}
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2018-07-31
把參數(shù)b的引號去掉,b是變量,不能加引號
2018-07-29
你把
window.open('b','width=400,height=500,menubar=no,toolbar=no)} ? ? 改成
window.open('http://idcbgp.cn','width=400,height=500,menubar=no,toolbar=no')}