案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript" src="/js/jquery.js"></script>
4
<script type="text/javascript">
5
$(document).ready(function(){
6
  $("p").mouseover(function(){
7
    $("p").css("background-color","yellow");
8
  });
9
  $("p").mouseout(function(){
10
    $("p").css("background-color","#E9E9E4");
11
  });
12
});
13
</script>
14
</head>
15
<body>
16
<p style="background-color:#E9E9E4">请把鼠标指针移动到这个段落上。</p>
17
</body>
18
</html>
19