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

点击按钮没有弹窗,请问是哪里错了?


function openWindow(){

    var open = confirm("确认打开网站吗?");

if (open==true)

{

    var url=prompt("请输入要打开的网址","http://www.imooc.com/");

    if (url!=null)

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

}

else

{alert("请求终止");}

else

{alert("取消打开");}  

}


提问者:utvc 2015-10-18 16:38

个回答

  • 紫焰123
    2015-10-18 16:45:26
    已采纳

    function openWindow(){
        var open = confirm("确认打开网站吗?");
    if (open==true)
    {
        var url=prompt("请输入要打开的网址","http://www.imooc.com/");
        if (url!=null)
     {window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');}
    }
    else
    {alert("请求终止");}
    else
    {alert("取消打开");}  
    }

    连续两个else。肯定是报错的。你再修改一下调试看看。