您好,我想知道為什么我點擊打開窗口 結(jié)果confirm顯示不了
<!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("確認(rèn)新建窗口打開網(wǎng)站嗎?");
??????? var opens=confirm("是否打開新網(wǎng)站");// 新窗口打開時彈出確認(rèn)框,是否打開
??????? if(open==true){
??????????? var webs=prompt("輸入您要打開的網(wǎng)站"); // 通過輸入對話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
??????????? window.open(webs,"_webs",'width=400,height=500,menubar=no,scrollbars=no')
??????????? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
?? ?
?????? ?
?????? ?
??????? }
??????? else{
??????????? alert("關(guān)閉窗口咯");
??????????? window.close();
?????????? ?
??????? }
?????? ?
?????? ?
?????? ?
??? }
?
?? ?
? </script>
?</head>
?<body>
?? ?? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()"? />
?</body>
</html>
2017-05-09
設(shè)置了兩個confirm的變量,沒必要把opens那行刪掉;
默認(rèn)沒給網(wǎng)址?var webs=prompt("輸入您要打開的網(wǎng)站",“http://idcbgp.cn/”);
在新窗口打開'_blank'
2017-05-09
?var webs=prompt("輸入您要打開的網(wǎng)站");中的引號要英文狀態(tài)的引號
2017-05-09
還沒找到問題,占位等答