为什么confirm没有弹出

来源:2-7 编程练习

o5好帅

2019-02-26 12:37

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>   

  <script type="text/javascript">  

    function openWindow(){

    var msg=confirm("是否打开新的网页");

    if(msg==true)

    {msg=prompt('打开',' http://www.imooc.com/');

        window.open("http://www.imooc.com/","_blank","width=400,height=500px,

        menubar=no,toolbar=no");

    }

    else{null}

    }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


写回答 关注

3回答

  • 侠4327791
    2019-02-27 20:31:20
    已采纳

    这样子。

    https://img.mukewang.com/5c7683100001c17104170309.jpg

  • 侠4327791
    2019-02-27 20:25:59
       function openWindow(){        var cc=confirm("是否打开网站?");                if(cc==true)        {                    var mywin=window.open('http://www.imooc.com/',        '_blank',        'width=400','height=500','menubar=no','toolbar=no');        }        else        {                    }            }


  • 错觉__
    2019-02-26 17:18:30

    要写两个函数吧 

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题