新网页为什么打不开呢?

来源:2-7 编程练习

weixin_慕慕7596948

2020-09-15 15:51

<!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>


写回答 关注

3回答

  • 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写错了

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题