1、jQuery  中 .eq( index )  的用法 :运行下面的例子及明白了。

 

 

<!DOCTYPE html>
<html>
<head>
  <style>
  div { width:60px; height:60px; margin:10px; float:left;
        border:2px solid blue; }
  .blue { background:blue; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
  <div></div>
  <div></div>
  <div></div>  <div></div>
  <div></div>
  <div></div>
<script>    $("body").find("div").eq(3).addClass("blue");
</script></body>
</html>