死活找不到問題
<!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 hope=confirm("點擊我,打開新網(wǎng)頁");
? ? ? ? if(hope==true)
? ? {var url=prompt("請確定網(wǎng)址","http://www.bilibili.com");
? ? ? ? if(url!=null)
? ? ? ? {window.open(url,"_blank",'width=400,height=500,menubar=no,toolbar=no');
? ? ? ? }
? ? ? ? else{alert("不能出去");
? ? ? ? ? ? }
? ? }
else{alert("你敢出去");
? ? }
}
? ? // 新窗口打開時彈出確認框,是否打開
? ? // 通過輸入對話框,確定打開的網(wǎng)址,默認為 http://idcbgp.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ??
? </script>?
?</head>?
?<body>?
?<center>
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
? <h1>Hello,world</h1>
</center> ??
?</body>
</html>
2020-04-06
注意{}的運用
正確代碼:
<!DOCTYPE html>
<html>
<head>? ??
<script>? ? ??
function openWindow()
{? ??
var hope=confirm("點擊我,打開新網(wǎng)頁");? ? ? ?
if(hope=true)
{? ? ? ?
var ab=prompt("請確定網(wǎng)址","http://www.bilibili.com");? ? ? ? ? ?
if(ab=null)? ? ? ??
{alert(ab);}? ? ? ??
else
{window.open("http://www.bilibili.com","_blank",'width=400,height=500,menubar=no,toolbar=no');? ? ? ? }? ? ? ? ? ??
}? ??
}
? ? ?</script>??
? ? ?</head>??
? ? ?<body>?
?<center>?
?<input name="button" type="button" onClick="openWindow()" value="點擊我,打開新窗口!" / >
?</center>
? </body>
? </html>
2020-03-22
你這個是沒問題的呀