<!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?conf=confirm("是否打開窗口?");
????//?新窗口打開時彈出確認框,是否打開
????if(conf?==?true)
????{
????????webpage=prompt("你要打開的鏈接為?","http://www.xianlaiwan.cn/");
????//?通過輸入對話框,確定打開的網址,默認為?http://www.xianlaiwan.cn/
??????if?(webpage?!=?null)
??????{
????????window.open(webpage,"_blank","width=400,height=500,menubar=no,toolbar=no")
??????}else{alert("1");}
????}else{alert("1");}
????}
窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
??</script>?
?</head>?
?<body>?
??<input?type="button"?value="新窗口打開網站"?onclick="openwindow()"?/>?
?</body>
</html>
2016-03-10
window.open("http://www.xianlaiwan.cn/","_blank","width=400,height=500,menubar=no,toolbar=no");
21行的中文要注釋掉
2016-03-09
分號變成英文分號就對了
2016-03-07
你第九行的代碼最后的分號應該在拼音狀態下輸入,你是在漢字狀態下輸入的,你改一下就行了。
2016-03-06
window.open('http://www.xianlaiwan.cn/',"_blank","width=400,height=500,menubar=no,toolbar=no")