案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<div onmousedown="mDown(this)" onmouseup="mUp(this)" style="background-color:green;color:#ffffff;width:90px;height:20px;padding:40px;font-size:12px;">请点击这里</div>
6
7
<script>
8
function mDown(obj)
9
{
10
obj.style.backgroundColor="#1ec5e5";
11
obj.innerHTML="请释放鼠标按钮"
12
}
13
14
function mUp(obj)
15
{
16
obj.style.backgroundColor="green";
17
obj.innerHTML="请按下鼠标按钮"
18
}
19
</script>
20
21
</body>
22
</html>
23