案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function mouseOver()
5
{
6
document.getElementById('b1').src ="/img/eg_mouse.jpg"
7
}
8
function mouseOut()
9
{
10
document.getElementById('b1').src ="/img/eg_mouse2.jpg"
11
}
12
</script>
13
</head>
14
15
<body>
16
<a href="//www.w3xue.com" onmouseover="mouseOver()" onmouseout="mouseOut()">
17
<img alt="Visit W3xue!" src="/img/eg_mouse2.jpg" id="b1" />
18
</a>
19
</body>
20
</html>