案例: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
  $("button").click(function(){
7
      $('ul li').removeClass(function() {
8
      return 'listitem_' + $(this).index();
9
    });
10
  });
11
});
12
</script>
13
<style type="text/css">
14
.listitem_1, .listitem_3
15
{
16
color:red;
17
}
18
.listitem_0, .listitem_2
19
{
20
color:blue;
21
}
22
</style>
23
</head>
24

 运行结果 
 北美留学生论坛