问答详情
源自:2-5 JavaScript-打开新窗口(window.open)

我的代码哪里错了?

CSS代码:

<script type="text/javascript">

  function BWopen(){

      var message=confirm("确定打开慕课网吗?");

      if(message==ture)

      {

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

      }

      else

      {

          alert("打开失败!");

      }

  }

</script>

HTML代码:

<body>

  <form>

    <input type="button" onClick="BWopen()" value="点击我,在新窗口显示目标网页!" />

  </form>

</body>

弹出确认对话框后,选择确定不会跳出网页,选择取消也不会跳出警告对话框,不知道哪里错了。我是chrome浏览器。


提问者:风早君418 2016-05-31 13:38

个回答

  • 财迷煎饼
    2016-05-31 14:12:05
    已采纳

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

    这里没加分号。

  • dxyz
    2016-05-31 14:09:09

    <!DOCTYPE HTML>

    <html>

    <head>

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

    <title>window.open</title>

    <script type="text/javascript">

      function Wopen(){

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


      } 

    </script>

    </head>

    <body>

        <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >

    </body>

    </html>


  • qq_马学新_03386277
    2016-05-31 13:47:47

    window.open("http://www.imooc.com","_blank","width=600,height=400,top=100,left=0")括号里面应该是单引号而不是双引号