问答详情
源自: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 openWindow(){

      var m=confirm("点击确定");

      if(m==ture)

      {

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

      }

   }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:weixin_慕慕7596948 2020-09-15 15:51

个回答

  • Vincon
    2020-09-20 14:29:11

    其实你可以直接if(confirm('是否新窗口打开')){} 就行. 反正确定就是true 取消就false了

  • Vincon
    2020-09-20 14:27:52

    true 不是ture  我也总写错

  • Jaques
    2020-09-15 17:17:56

    if(m==true),你的true写错了