问答详情
源自:2-7 编程练习

prompt为null的情况

var url=prompt("通过输入对话框,确定打开的网址","http://www.imooc.com");

                if(url!=null){

                    window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no'); 

                    }

                    else{alert("再见!");}

                    }

请问这段代码为啥在输入的时候为空,点确认为什么还是打开了网页,而不是判断为NULL而弹出再见的窗口?

提问者:enough2 2016-09-12 00:09

个回答

  • 石锅拌飯
    2016-09-12 10:37:00
    已采纳

    window.open("http://www.imooc.com","_blank",'width=400px,height=500px,menubar=no,toolbar=no'); 

    window.open 的第一个参数是你要打开的网址 如果不填就是空白页

  • 雷雷雷雷雷欧
    2016-09-12 02:44:05

    if 语句内容应该为 url!=""