x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function removeScroll() {
8
document.getElementById("myframe").scrolling = "no";
9
}
10
</script>
11
</head>
12
<body>
13
14
<iframe id="myframe" src="https://www.mifengjc.com" scrolling="auto">
15
<p>你的浏览器不支持iframes。</p>
16
</iframe>
17
<p>scrolling属性的值为:
18
<script>
19
document.write(document.getElementById("myframe").scrolling);
20
</script>
21
<p>
22
<input type="button" onclick="removeScroll()" value="移除滚动条">
23
<p>IE,Google Chrome,Opera,和Safari 在设置滚动条时会出现问题。</p>
24
25
</body>
26
</html>