案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<div onmouseover="mOver(this)" onmouseout="mOut(this)" style="background-color:green;width:120px;height:20px;padding:40px;color:#ffffff;">把鼠标移到上面</div>
6
7
<script>
8
function mOver(obj)
9
{
10
obj.innerHTML="谢谢"
11
}
12
13
function mOut(obj)
14
{
15
obj.innerHTML="把鼠标移到上面"
16
}
17
</script>
18
19
</body>
20
</html>
21