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