案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function lighton()
6
{
7
document.getElementById('myimage').src="/img/eg_bulbon.gif";
8
}
9
function lightoff()
10
{
11
document.getElementById('myimage').src="/img/eg_bulboff.gif";
12
}
13
</script>
14
</head>
15
16
<body>
17
<img id="myimage" onmousedown="lighton()" onmouseup="lightoff()" src="/img/eg_bulboff.gif" />
18
<p>按住鼠标不放可以点亮这盏灯!</p>
19
</body>
20
</html>
21