案例:jQuery案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <style>
5
  div { width:70px; height:70px; background:#abc; 
6
        border:2px solid black; margin:10px; float:left; }
7
  div.before { border-color: red; }
8
  </style>
9
  <script type="text/javascript" src="/js/jquery.js"></script>
10
</head>
11
12
<body>
13
  <div></div>
14
  <div></div>
15
  <div></div>
16
  <div></div>
17
<script>$("div:last").prevAll().addClass("before");</script>
18
19
</body>
20
</html>
21