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

为啥点取消还是能弹出网页? 大神教我呗

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

  function xi(){

    var y=confirm("是否打开?");


   if(y=true)

       {

           window.open('http://www.imooc.com/','width=400','height=500','menubar=no','toolbar=no');

           

       }

    else

        {

            alert("打开失败!");

            

        }

  }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:weixin_慕九州7379490 2019-02-03 21:02

个回答

  • 慕桂英0247989
    2019-02-12 21:07:27

    ==true

  • qq_宝慕林8443553
    2019-02-03 23:35:24

    alert本身就是一个警告弹窗啊