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

scrollbars滚动条

我想知道为啥scrollbars设置为no但是窗口上还是有滚动条呢  ?是因为浏览器的兼容性问题么?

提问者:慕前端4531839 2016-04-09 12:17

个回答

  • 慕前端4531839
    2016-04-09 23:26:22

    <!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','left=400,width=400,height=200,menubar=no,toolbar=no,status=no,scrollbars=no,')

          


      } 

    </script>

    </head>

    <body>

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

    </body>

    </html>


  • renyaojia
    2016-04-09 13:10:33

    应该是yes

  • weibo__牵行_0
    2016-04-09 13:03:44

    你把代码发上来看看....