<!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?queren=confirm("是否打開(kāi)新窗口?");
??????if(queren==true)
????????{??
?????????var?myweb=prompt("請(qǐng)輸入網(wǎng)址:","http://idcbgp.cn");
?????????if(myweb!=null)
???????????{??
?????????????window.open(myweb,"-blank",'width=400,height=500,menubar=no,toolbar=no')
????????????}
?????????else{???
????????????alert("goodbye!")
????????????}
????????}
??????else?{?
???????alert("goodbye!")
???????}
????}
??</script>?
?</head>?
?<body>?
??????<input?type="button"?value="新窗口打開(kāi)網(wǎng)站"?onclick="openWindow()"?/>?
?</body>
</html>
2016-03-10
<!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?queren=confirm("是否打開(kāi)新窗口?");
??????if(queren==true)
????????{??
?????????var?myweb=prompt("請(qǐng)輸入網(wǎng)址:","http://idcbgp.cn");//這里的逗號(hào)改為英文逗號(hào)
?????????if(myweb!=null)
???????????{??
?????????????window.open(myweb,"-blank",'width=400,height=500,menubar=no,toolbar=no');
????????????}
?????????else{???
????????????alert("goodbye!");
????????????}
????????}
??????else?{?
???????alert("goodbye!");
???????}
????}
??</script>?
?</head>?
?<body>?
??????<input?type="button"?value="新窗口打開(kāi)網(wǎng)站"?onclick="openWindow()"?/>?
?</body>
</html>