代碼哪里有問(wèn)題
function openWindow(){
? ? var chuankou=confirm("是否要打開新窗口"); ??
? ? ? ? if (chuankou==true)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? var wanzhi=prompt("請(qǐng)輸入需要打開窗口的名稱","http://idcbgp.cn/");
? ? ? ? ? ? ? ? window.open(wanzhi,'_top','width=400,height=600');
? ? ? ? ? ? }
? ? ? ?
? ? }
2015-07-29
這邏輯就不對(duì),window.open()在mycc為true的分支里,說(shuō)明只要是打開就會(huì)彈出http://idcbgp.cn/網(wǎng)址,你需 要在寫一個(gè)分支,來(lái)判斷address的值,咋確定是否打開新的窗口或者,網(wǎng)址是不是為空,或者是否點(diǎn)擊了prompt中的取消鍵,希望幫到你。