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

打开新窗口我遇到了好几个问题

打开新窗口我遇到了如下几个问题:

①、窗口名称中“_blank”设置的长度和宽度没有作用,因为无论 我怎么改,都一直是满屏?

②、长度、宽度等要求的单位时像素,为什么我写不写px都没影响?

③、“_top”的作用效果竟然和“_blank”一眼,求解?

提问者:qq_阳光下的海风_0 2016-06-10 16:44

个回答

  • 就打德
    2016-06-23 19:46:29

    三个参数左右都加单引号 window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');

  • mkzzzz3536446
    2016-06-22 18:52:38

    <!DOCTYPE HTML>

    <html>

    <head>

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

    <title>window.open</title>

    <script type="text/javascript">

      function window.open(

          "http://www.baidu.com","_blank","width=600px,height=400px,menubar=yes,toolbar=yes,top=100px,left=0"


      )

    </script>

    </head>

    <body>

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

    </body>

    </html>


  • 成圣
    2016-06-10 17:18:52

    上面那位帅哥乱说的,你吧代码贴出来看看

  • crystal梦
    2016-06-10 17:10:13

    _blank意思是在当前窗口显示

    _top是在新窗口显示