案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script type="text/javascript" src="/js/jquery.js"></script>
5
<style>
6
  li { margin: 3px; padding: 3px; background: #EEEEEE; }
7
  li.hilight { background: yellow; }
8
</style>
9
</head>
10
<body>
11
  <ul>
12
    <li><b>Click me!</b></li>
13
    <li>You can also <b>Click me!</b></li>
14
  </ul>
15
<script>
16
  $( document ).bind("click", function( e ) {
17
    $( e.target ).closest("li").toggleClass("hilight");
18
  });
19
</script>
20
</body>
21
</html>
22