麻煩大家看看我的代碼 怎么執行后沒有反應啊.
大家能不能看看我的代碼怎么 執行之后沒有反應啊 ...我的瀏覽器是chrome
代碼如下:
<!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 open=confirm("是否要打開窗口?");//新窗口打開時彈出確認框,是否打開
? ? ? if(open==ture)
? ? ? {var url=prompt("輸入網址","http://www.xianlaiwan.cn");
? ? ? if(url!=null)
? ? ? {window.open("url");
? ? ? else
? ? ? { alert("再見");}
? ? ? else
? ? ? { alert("再見");}
? ? }
? ??
? ??
? </script>?
?</head>?
?<body>?
?<input type="button" ?value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
2017-01-11
<!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 open=confirm("是否要打開窗口?");//新窗口打開時彈出確認框,是否打開
? ? ? if(open==true)
? ? ? {
?var url=prompt("輸入網址","http://www.xianlaiwan.cn/");
? ? ? if(url!=null)
? ? ? {
?window.open(url);
?}
? ? ? else
? ? ? {?
?alert("再見");
?}
? ? ?
?}?
?else
? ? ? {?
?alert("再見");
?}
? ? }
? ??
? ??
? </script>?
?</head>?
?<body>?
?<input type="button" ?value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
2017-01-11
window.open("url");這句改成window.open(url);
2017-01-11
你的true寫錯了。應該是true而不是ture;