案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <script type="text/javascript" src="/js/jquery.js"></script>
5
</head>
6
7
<body>
8
<ul>
9
   <li>list item 1</li>
10
   <li>list item 2</li>
11
   <li class="third-item">list item 3</li>
12
   <li>list item 4</li>
13
   <li>list item 5</li>
14
</ul>
15
16
<script>
17
$('li.third-item').next().css('background-color', 'red');
18
</script>
19
20
</body>
21
</html>
22