案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1 onmouseover="style.color='red'" onmouseout="style.color='blue'">
6
请把鼠标移到这段文本上
7
</h1>
8
9
</body>
10
</html>
11