為什么點(diǎn)擊新窗口打開網(wǎng)站沒有任何反應(yīng)?
function openWindow() ?{ ? ? ?var temp=confirm("是否打開新窗口?"); ? ? ?if(temp==true) ? ? ?{ ? ? ? ? var n_open=prompt("確定打開窗口","http://idcbgp.cn/"); ? ? ? ? ?window.open(url,'_blank',width=400','height=500','menubar="no"','toolbar="no"'); ? ? ?} ?} ? 為什么點(diǎn)擊新窗口中打開網(wǎng)頁,并沒有出現(xiàn)confirm的內(nèi)容,也沒有新窗口彈出。
2016-10-10
window.open(url,'_blank',width=400','height=500','menubar="no"','toolbar="no"');中url修改為n_open;
width=400','height=500','menubar="no"','toolbar="no"'必須放在一個(gè)“”下面。