案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<div 
6
onmousedown="mDown(this)" 
7
onmouseup="mUp(this)" 
8
style="background-color:#D94A38;width:200px;height:50px;padding-top:25px;text-align:center;">
9
点击这里
10
</div>
11
12
<script>
13
function mDown(obj)
14
{
15
obj.style.backgroundColor="#1ec5e5";
16
obj.innerHTML="松开鼠标"
17
}
18
19
function mUp(obj)
20
{
21
obj.style.backgroundColor="#D94A38";
22
obj.innerHTML="谢谢你"
23
}
24
</script>
25
26
</body>
27
</html>
28