HTML DOM scrolling 属性
定义和用法
scrolling 属性可设置或返回 iframe 是否拥有滚动条(滚动策略)。
语法
iframeObject.scrolling=auto|yes|no
实例
下面的例子可添加和删除 iframe 的滚动条:
<html> <head> <script type="text/javascript"> function addScrollbars() {document.getElementById("frame1").scrolling="yes";
} function removeScrollbars() {document.getElementById("frame1").scrolling="no";
} </script> </head> <body> <iframe src="frame_a.htm" id="frame1" ></iframe><br /> <input type="button" onclick="addScrollbars()" value="Add Scrollbars" /> <input type="button" onclick="removeScrollbars()" value="Remove Scrollbars" /> </body> </html>