JS去除iframe滚动条的⽅法本⽂实例讲述了JS去除iframe滚动条的⽅法。分享给⼤家供⼤家参考。具体如下:
下⾯的代码可以通过修改scrolling来去除iframe的滚动条
<!DOCTYPE html>
<html>
<head>
<script>
function removeScroll()
{
}
</script>
</head>
<body>
js控制滚动条<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.ElementById("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>
希望本⽂所述对⼤家的javascript程序设计有所帮助。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论