感覺(jué)邏輯沒(méi)有錯(cuò)啊 為什么運(yùn)行不了呢?
function openWindow(){
? ? ? function nwin1(){
? ? ?var temp=confirm("是否打開(kāi)新的網(wǎng)頁(yè)?");
? ? ?if(temp==true){
? ? ? ? ?function nwin2(){
? ? ? ? ?var k_open=prompt("請(qǐng)輸入你要打開(kāi)的網(wǎng)址:","http://idcbgp.cn/");
? ? ? ? ?window.open(k_open,"_blank",'width=400,height=500,menubar=no,toolbar=no');
? ? ?}
? nwin2();
? }
? ? ? }
? ? ? nwin1();
? ? ? }
2016-12-08