window.open("http://www.imooc.com",'width=600,height=400')

来源:8-1 window对象

luona

2015-08-23 18:10

 window.open("http://www.imooc.com",'width=600,height=400')我设置了他的宽高为什么显示的时候的屏幕尺寸 不对啊。。。。。。。。。。。 不是600和400而是全屏啊

写回答 关注

5回答

  • 猪猪侠123
    2015-09-07 18:10:17
    已采纳

    <!DOCTYPE HTML>

    <html>

    <head>

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

    <title>window对象</title>

    <script type="text/javascript">

    function open()

      {  alert("欢迎来到慕课网")

          window.open("http://www.imooc.com",'_blank','width=600,height=400'); }

    </script>

    </head>

    <body>

    <form>

    <input type="button" value="点击我,打开新窗口" onclick="open()" />

    </form>

    </body>

    </html>


    luona

    非常感谢!

    2015-09-08 16:59:27

    共 1 条回复 >

  • luona
    2015-08-25 15:45:36

    试了没用滴

  • Perona
    2015-08-23 20:39:51

    要加个_blank属性。不写的话,默认是_self (在当前窗体打开)。是没办法改变窗体大小的。

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


  • 大虾来了
    2015-08-23 20:18:33

    你把 'width=600,height=400' 这段代码头上的单引号去了试试。


  • bywater
    2015-08-23 18:28:57

     你看是不是设置了WINDOW_HEIGHT = document.body.clientHeight 

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题