js如何清除iframe滚动条 js操作滚动条方法示例

发布时间:2020-11-18编辑:脚本学堂
如何用js去除iframe滚动条的方法,通过修改scrolling来去除iframe的滚动条,通过例子学习并掌握javascript操作iframe中属性的方法。

js去除iframe滚动条的方法。

例子,通过修改scrolling来去除iframe的滚动条。
 

复制代码 代码示例:
<!DOCTYPE html>
<html>
<head>
<script>
function removeScroll()
{
document.getElementById("myframe").scrolling="no";
}
</script>
</head>
<body>
<iframe id="myframe" src="/default.asp" scrolling="auto">
<p>Your browser does not support iframes.</p>
</iframe>
<p>The value of the scrolling attribute is:
<script>
document.write(document.getElementById("myframe").scrolling);
</script>
<p>
<input type="button" onclick="removeScroll()"
value="Remove Scrollbars">
<p>Internet Explorer, Google Chrome, Opera,
and Safari have problems with setting
the scrolling attribute.</p>
</body>
</html>