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