案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
div
5
{
6
border:thin solid green;
7
width:100px;
8
height:100px;
9
}
10
</style>
11
<script type="text/javascript">
12
function hideOverflow()
13
{
14
document.getElementById("div1").style.overflow="hidden";
15
}
16
</script>
17
</head>
18
<body>
19
20
<div id="div1">
21
This is some text. This is some text. This is some text.
22
This is some text. This is some text. This is some text.
23
This is some text. This is some text. This is some text.
24
</div>
25
<br />
26
<input type="button" onclick="hideOverflow()" value="Hide overflow" />
27
28
</body>
29
</html>
30