案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function moveover()
5
{
6
document.getElementById('image').width="200"
7
document.getElementById('image').height="360"
8
}
9
function moveback()
10
{
11
document.getElementById('image').width="100"
12
document.getElementById('image').height="180"
13
}
14
</script>
15
</head>
16
17
<body>
18
19
<b>请把鼠标移动到图像上:</b><br />
20
<img id="image" src="/img/eg_bulbon.gif"
21
onmouseover="moveover()"
22
onmouseout="moveback()"
23
width="100" height="180" />
24
25
</body>
26
</html>
27