Frame/IFrame scrolling 属性
Iframe / Frame 对象的 scrolling 属性可设置或者返回 frame / iframe 元素中 scrolling 属性的值
scrolling 属性指定 frame/iframe 是否显示滚动条
语法
frameObject.scrolling= auto | yes | no
或者
iframeObject.scrolling= auto | yes | no
值说明
值 | 描述 |
---|---|
auto | 根据文档的尺寸自动显示滚动条 ( 默认 ) |
yes | 滚动条一直显示 |
no | 滚动条永远不显示 |
浏览器支持
所有主要浏览器都支持 scrolling 属性
范例
返回以及设置 scrolling 属性的值
<script> function removeScroll(){ document.getElementById("myframe").scrolling="no"; } </script> <iframe id="myframe" src="/static/media/html/demo_iframe.html" scrolling="auto"> <p>你的浏览器不支持iframes</p> </iframe> <p>scrolling属性的值为: <script> document.write(document.getElementById("myframe").scrolling); </script> <p> <input type="button" onclick="removeScroll()" value="移除滚动条"> <p>IE,Google Chrome,Opera,和Safari 在设置滚动条时会出现问题</p>