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