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

这个函数哪里错了?

 function openWindow(){

       var open=comfirm("确认打开新网址?");

       if(open==true){

        var newurl=prompt("确认打开新窗口?","http://www.imooc.com");

        if(newurl!=null){

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

       }

       else{

          document.write("失败");

       }

       }

       else{

           document.write("失败");

       } 

   }


提问者:dreamermaster 2019-06-28 12:13

个回答

  • 慕斯9531049
    2019-07-18 19:20:16
    已采纳

    https://img1.mukewang.com/5d30557e00011ee902790028.jpg    confirm

  • 屁孩
    2019-07-01 11:41:11

    你是不知道哪里执行不下去吗。打断点看看

  • weibo_盹儿姐盹儿的慌_0
    2019-06-28 17:25:12

    var open=comfirm("确认打开新网址?");

  • weibo_盹儿姐盹儿的慌_0
    2019-06-28 17:18:28

    if(newurl!=null)--》if(newurl!=“”)