怎么完善这个代码?

来源:2-7 编程练习

李大仁阿

2017-01-13 15:48

下面的这个

if(mymsg2!=null){

....

}

这个判断条件怎么完善?如果输入框输入的不是正确的网址肯定是打不开的 但是肯定不是null,所以怎么完善一下?哪位兄台能指点一下?

写回答 关注

2回答

  • 势ice
    2017-01-13 16:28:16

    <!DOCTYPE html>
    <html>
    <head>
       <title> new document </title>
       <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
       <script type="text/javascript">

           // 新窗口打开时弹出确认框,是否打开
           function openWindow(){

               var mymsg= confirm("是否打开新网页?");
               if(mymsg==true){
                   var mymsg2 = prompt("请输出一个网址","http://www.imooc.com/");
                   var wz="http://www.imooc.com/";
                   if (mymsg2==wz){
                       window.open(mymsg2,"_blank","width:400px,height:500px")
                   }
                   else{
                      var a=confirm('这个网页不是慕课网,你确定要打开么?')
                       if (a==true){
                           window.open(mymsg2,"_blank","width:400px,height:500px")
                       }
                   }
               }
               else{
                   alert("欢迎下次打开");
               }
           }
           // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

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


       </script>
    </head>
    <body>
    <input type="button" value="新窗口打开网站" onclick="openWindow()" />
    </body>
    </html>

  • 势ice
    2017-01-13 16:08:09

    <!DOCTYPE html>
    <html>
    <head>
       <title> new document </title>
       <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
       <script type="text/javascript">

           // 新窗口打开时弹出确认框,是否打开
           function openWindow(){

               var mymsg= confirm("是否打开新网页?");
               if(mymsg==true){
                   var mymsg2 = prompt("请输出一个网址","http://www.imooc.com/");
                   var wz="http://www.imooc.com/";
                   if (mymsg2==wz){
                       window.open(mymsg2,"_blank","width:400px,height:500px")
                   }
                   else{
                       alert ("那好吧,不打开就不打开!");
                   }
               }
               else{
                   alert("欢迎下次打开");
               }
           }
           // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

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


       </script>
    </head>
    <body>
    <input type="button" value="新窗口打开网站" onclick="openWindow()" />
    </body>
    </html>

    势ice 回复李大仁阿

    ···没毛病啊 第一个confirm是否弹出新网页····取消就false啊,不行打开就根本不用执行第二个confirm不是么····

    2017-01-19 10:28:56

    共 6 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题