這個代碼為什么實(shí)現(xiàn)不了呢?彈不出來提示框
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>? ?
? <script type="text/javascript">?
? ? ? function stone(){
? ? ? ? ? var one=confirm("是否打開")
? ? ? ? ? if(one==true){
? ? ? ? ? ? ? var two=prompt(" http://idcbgp.cn/")
? ? ? ? ? else if(two==true){
? ? ? ? ? ? ? window.open("http://idcbgp.cn/")
? ? ? ? ? }? ??
? ? ? ? ? }
? ? ? ? ??
? ? ? }
? ??
? ? // 新窗口打開時彈出確認(rèn)框,是否打開
? ? // 通過輸入對話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ??
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="stone()" />?
?</body>
</html>
2018-11-08
你把var two=prompt(" http://idcbgp.cn/")改成var two=prompt(“輸入網(wǎng)址:”," http://idcbgp.cn/")。然后去掉else if(two==true),因?yàn)閜rompt的返回類型是str型,不是boolean型的,這句錯了
2018-11-07
把第10行換成?window.open("http://idcbgp.cn/")