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

大婶们,看看我这段代码有什么问题,跪拜

function openWindow()

   {

   var open = confirm("shifou dakai?");

   // 新窗口打开时弹出确认框,是否打开

   if(open==true)

    {var URL=prompt("shuruwangzhi","http://www.imooc.com/");

    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

    if (URL!=true)

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

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

    else

    {alert("zaijian!");}

    }

   else

   {alert("zaijian!");}

   } 


提问者:qq_丹窟寺人_0 2016-01-10 12:42

个回答

  • 谢康
    2016-01-10 17:32:15

    <!DOCTYPE html>
    <html lang="en">
    <head>
     <meta charset="UTF-8">
     <title>Document</title>
    </head>
    <body>
    <script>
       // 新窗口打开时弹出确认框,是否打开
    window.onload=function  () {
     
      var open = confirm("shifou dakai?");
         if(open==true){
          //通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
          var URL=prompt("shuruwangzhi","");
          if (URL!==true){
           //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
           window.open(URL,'123','width=400,height=500,menubar=no,toolbar=no');
          }else{
           alert("zaijian!");
          }
      }else{
          alert("zaijian2!");
         }
     
    }
     </script>
    </body>
    </html>

  • 努力过就好
    2016-01-10 14:26:12

    有2个问题:第一个问题是网址:http://之间你多写了一个空格,你重新写一下;第二个问题是prompt中  if 的判断语句是用 !=null 或者 ==null,而不是true或者false;应该改写为 if(URL!=null), 你可以看下我写的http://img.mukewang.com/5691f975000115fb06400295.jpg

  • Eren_Yeager
    2016-01-10 13:28:11

    if(URL!=true)
    改为 if(URL!="")


  • 李晓健
    2016-01-10 13:23:49

    这里哪来的大婶呀

    //这里的地址写错了
    var URL=prompt("shuruwangzhi","http://www.imooc.com/");