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