新窗口打開網(wǎng)站沒有反應(yīng)
?function openWindow(){
? ? ? ? var open=confirm("是否打開?"); // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
? ? ? ? if(open==true){
? ? ? ? ? ? var url=prompt("確定訪問的網(wǎng)址","http://idcbgp.cn/");// 通過輸入對話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? ? ? }
? ? ? ? if(url!=null){
? ? ? ? ? ? window.open(url,"_blank","width=400","height=500","toolbar=no","scrollbars=no");//打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? ? ? }
? ? ? ? else {
? ? ? ? ? ? alert("再見");
? ? ? ? }
? ? ? ? else {
? ? ? ? ? ? alert("再見");
? ? ? ? }
已眼瞎實(shí)在找不到問題在哪里。。。。
2017-09-23
你的括號弄錯(cuò)了
這是我的:
? ? ? ? var open=confirm("是否打開?"); // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
? ? ? ? if(open==true){
? ? ? ? ? ? var url=prompt("確定訪問的網(wǎng)址","http://idcbgp.cn/");// 通過輸入對話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? ? ? if(url!=null){
? ? ? ? ? ? window.open(url,"_blank","width=400","height=500","toolbar=no","scrollbars=no");//打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? ? ? }
? ? ? ? else {
? ? ? ? ? ? alert("再見");
? ? ? ? }
}
? ? ? ? else {
? ? ? ? ? ? alert("再見");
? ? ? ? }}
2017-09-23
window.open(url,"_blank","width=400","height=500","toolbar=no","scrollbars=no")改為window.open(url,"_blank",'width=400,height=500,toolbar=no,scrollbars=no')試試