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

为什么滚动条不能隐藏

<!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','height=600,width=400,top=100,left=0,scrollbars=no');


  } 

</script>

</head>

<body>

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

</body>

</html>




提问者:qq_慕斯6533709 2018-11-02 22:51

个回答

  • biu的一下
    2018-11-02 23:57:24

    应该是你设置了打开的页面的宽度和高度,所以打开的页面不是全屏的,只能显示一部分页面,所以浏览器就出现那个滚动条了,可以通过设置目标页面的<body scroll=no>属性来解决似乎(认真脸)