有老師能告訴我為什么,哪里錯了嗎?
<!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 myweb=confirm("是否打開網頁");
??????? var url;
??????? url=prompt("輸入確定打開的網址");
??????? if(url="http://www.xianlaiwan.cn/"){
???
??? window.open('http://www.xianlaiwan.cn','_blank','windth=400','height=500','menuber=no','toolbar=no');
??????? }
??????? else{
??????????? alert("請輸入正確網址:http://www.xianlaiwan.cn/")
??????? }
??? }
??? // 新窗口打開時彈出確認框,是否打開
??? // 通過輸入對話框,確定打開的網址,默認為 http://www.xianlaiwan.cn/
??? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
???
???
? </script>
?</head>
?<body>
?? <input type="button" value="新窗口打開網站" onclick="openWindow()" />
?</body>
</html>
2016-06-07
寬度width寫錯了
2016-06-05
window.open里第三個參數只用一個引號,不是每一項都括起來
window.open('http://www.xianlaiwan.cn','_blank','windth=400,height=500,menuber=no,toolbar=no');