完全沒有反應(yīng)?幫忙看看這個(gè)代碼有啥問題唄?
<!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("是否打開網(wǎng)址?");
? ? ? ? if(open==true)
? ? ? ? {
? ? ? ? ? ? var url=prompt("請(qǐng)輸入需要打開的網(wǎng)址","http://idcbgp.cn/");
? ? ? ? ? ? if (url!=null){wiondow.open(url,'height=500,width=400,toolbar=no,menubar=no,_blank')
? ? ? ? ? ? else{alert=('再見好嗎')}
? ? ? ? }
? ? ? ? else{alert=('再見2')}
? ? }
? ??
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2015-11-20
<!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=confrim("你確定打開慕課網(wǎng)?");
? ? if(open==true)
? ? {
? ? ? ? windows.open(http:idcbgp.cn,wideth=400px,height=px,menubar=no,toolbar=no)}
? ? else
? ? {document.write("謝謝")}
? ??
? ? // 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄
? ??
? ??
? </script>?
?</head>?
?<body>?
? ? ? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
我這個(gè)為什么也不顯示啊?求求大神指導(dǎo)
2015-11-19
if 后面少一個(gè) }?