麻煩看下為什么打開不了網(wǎng)頁
<!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 i=confirm("是否打開新窗口?");
? ? ?i=prompt("","http://idcbgp.cn");
? ? // 通過輸入對話框,確定打開的網(wǎng)址,默認為 http://idcbgp.cn/
? ? if(i==ture){
? ? ? ? window.open('http://idcbgp.cn/','_blank','witdh=400,height=500')
? ? ? ??
? ? }
? ? }
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ??
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2020-03-05
不是這樣的嗎?點擊按鈕>彈出對話框>確認對話框>跳轉網(wǎng)頁
2020-03-05
我沒看懂輸入對話框的作用
2020-03-05
<!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 click = confirm("是否打開新網(wǎng)頁");
? ? ? ? ? ? if(click == true){
? ? ? ? ? ? ? ? window.open('http://idcbgp.cn/','_blank','width=400px,height=500px,menubar=no,toolbar=no')
? ? ? ? ? ? }
? ? ? ? }
? ? // 新窗口打開時彈出確認框,是否打開
? ? // 通過輸入對話框,確定打開的網(wǎng)址,默認為 http://idcbgp.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ??
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2020-03-04
你有一些細節(jié)做錯了,我?guī)湍愀暮昧?,你看一下我跟你改的然后看看你自己的對比一下就知道?/p>
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title>??
? <meta charset="utf-8" />? ?
? <script type="text/javascript">??
? ? function openWindow(){
? ? // 新窗口打開時彈出確認框,是否打開
? ? ?var i=confirm("是否打開新窗口?");
? ? ?// i=prompt("","http://idcbgp.cn");
? ? // 通過輸入對話框,確定打開的網(wǎng)址,默認為 http://idcbgp.cn/
? ? if("i==ture"){
? ? ? ? window.open("http://idcbgp.cn/","_blank","witdh='400',height='500'")
? ? }
? ? }
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ??
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>