JavaScript 参考手册
Frame/IFrame scrolling 属性
返回以及设置 scrolling 属性的
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function removeScroll() { document.getElementById("myframe").scrolling = "no"; } </script> </head> <body> <iframe id="myframe" src="https://www.mifengjc.com" 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> </body> </html>
运行结果:
点击运行 »