為什么confirm沒反應?
<!DOCTYPE?html>
<html>
?<head>
??<title>?new?document?</title>
??<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"/>
??<script?type="text/javascript">
????function?rec()?{
????//?新窗口打開時彈出確認框,是否打開
????//?通過輸入對話框,確定打開的網址,默認為?http://www.xianlaiwan.cn/
????//打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
??????if(confirm("open?"))
??????{
????????window.open("http://www.xianlaiwan.cn/"?"_blank"?"width=400?height=500?menubar=no?toolbar=no");
??????}
????}
??</script>
?</head>
?<body>
????<input?type="button"?onclick="rec()"?value="點擊我,彈出確認對話框"?/>
?</body>
</html>點擊button沒有反應
2017-01-16
你代碼寫錯了。
<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"/> ?刪除這句,就不會顯示亂碼
window.open("http://www.xianlaiwan.cn/"?"_blank"?"width=400?height=500?menubar=no?toolbar=no");
把這句里的空格全部改成逗號
2016-12-11
游覽器的問題?