您的位置:首页 > Web前端 > JavaScript

框架无滚动条的javascript脚本

2015-04-01 16:04 127 查看
框架无滚动条的javascript脚本

主要是通过修改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" value="Remove Scrollbars"> <p>Internet Explorer, Google Chrome, Opera, and Safari have problems with setting the scrolling attribute.</p>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  javascript 滚动条