我感觉这样写还是有问题!不满意,想请大佬给出建议

来源:2-7 编程练习

qq_慕田峪4015535

2019-10-16 11:54

<!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 wahaha=confirm("是否打开世界之门?");

     if(wahaha==true)

    {

    document.write("是");

    {   var haha=confirm("打开世界之门?");

     if(haha==true)

    {document.write("是");

    window.open('http://www.imooc.com ','_blank','width=400,height=500,top=100,left=0')

    }

    else

    {

       wahaha.close();("否");

    }

    }

    }

    else

    {

       wahaha.close();("否");

    }

  }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


写回答 关注

2回答

  • Dust丿星辰
    2019-10-16 13:44:47

    //为了你方便看,这里单独列出openWindow()的写法

    function openWindow(){

     if(confirm("请确认打开窗口"))   //因为confirm的返回值是一个bool量,故可以直接写在if条件里

    {

    window.open( prompt("请确认网址","http://www.imooc.com/"),'_blank','width=400,height=500,menubar=no,toolbar=no,scrollbars=yes,status=yes');    /*因为prompt的返回值是第二个字符串参数,故默认网址写在第二个字符串参数,以便用户可以更改(比如改为www.baidu.com)*/

      }

     }


  • Dust丿星辰
    2019-10-16 13:39:53

    <!DOCTYPE html>

    <html>

     <head>

    <script type="text/javascript">

      function openWindow(){

         if(confirm("请确认打开窗口"))//confirm的返回值是一个bool量,故可以直接写在if条件里

    {

    window.open( prompt("请确认网址","http://www.imooc.com/"),'_blank','width=400,height=500,menubar=no,toolbar=no,scrollbars=yes,status=yes')//prompt的返回值是第二个字符串参数,故默认网址写在第二个字符串参数,以便用户可以更改(比如改为www.baidu.com)

      }

     }

      </script>

    </head> 

     <body> 

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

     </body>

    </html>


    Dust丿星... 回复qq_宝慕林...

    confirm本身并没自带判断,只是会出现弹窗然后“确定”会返回“true”,“取消”会返回“false”,这里的“if”是来判别confirm返回的是“true”还是“false”从而进行下一步。

    2019-10-16 14:40:31

    共 2 条回复 >

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题