> HTML DOM scrolling 属性

HTML DOM scrolling 属性

定义和用法

scrolling 属性可设置或返回框架是否拥有滚动条。

语法

frameObject.scrolling=yes|no

实例

在我们的例子中,首先将创建包含带有两个列的框架集的 HTML 文档。每列设置为浏览器窗口的 50%:

<html>
  <frameset cols="50%,50%">
    <frame id="leftFrame" src="frame_scroll.htm">
    <frame id="rightFrame" src="frame_a.htm">
  </frameset>
</html>

HTML 文档 "frame_scroll.htm" 被放入第一列,而 HTML 文档 "frame_a.htm" 被放入第二列。

下面是 "frame_scroll.htm" 的源代码:

<html>
<head>
<script type="text/javascript">
function enableScrolling()
  {
  parent.document.getElementById("leftFrame").scrolling="yes"
  parent.document.getElementById("rightFrame").scrolling="yes"
  }
function disableScrolling()
  {
  parent.document.getElementById("leftFrame").scrolling="no"
  parent.document.getElementById("rightFrame").scrolling="no"
  }
</script>
</head>

<body>
<input type="button" onclick="enableScrolling()"
value="Scroll bars" />
<input type="button" onclick="disableScrolling()"
value="No scroll bars" />
</body>

</html>
参考手册

W3c0.com 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3c0 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。版权所有,保留一切权利。 鲁ICP备15022115号