实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function removeScroll()
6
{
7
document.getElementById("myframe").scrolling="no";
8
}
9
</script>
10
</head>
11
<body>
12
13
<iframe id="myframe" src="https://shouce.ren" scrolling="auto">
14
<p>Your browser does not support iframes.</p>
15
</iframe>
16
17
<p>The value of the scrolling attribute is:
18
<script>
19
document.write(document.getElementById("myframe").scrolling);
20
</script>
21
<p>
22
23
<input type="button" onclick="removeScroll()" value="Remove Scrollbars">
24
25
<p>Internet Explorer, Google Chrome, Opera, and Safari have problems with setting the scrolling attribute.</p>
26
27
</body>
28
</html>
29