简单教程
提交运行
代码编辑器:
<script> function removeScroll(){ document.getElementById("myframe").scrolling="no"; } </script> <iframe id="myframe" src="/static/media/html/frame_a.html" height="40px" 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>
运行结果: