:even

选择索引值是奇数的元素。索引值从 0 开始计数。同时可以参考 odd

特别注意,跟通常的直觉相反,索引值从 0 开始计数实际上意味着,如果使用了这个偶数索引选择器 :even ,实际选中的是匹配集合中第一个、第三个、第五个这类元素。

示例:

查找表格中的奇数行,即匹配第一行、第三行等 (索引值是 0, 2 ,4 )。

<!DOCTYPE html>
<html>
<head>
<style>

  table {
    background:#eeeeee;
  }
  </style>
<script src="jquery.min.js"></script>
</head>
<body>

<table border="1">
    <tr><td>Row with Index #0</td></tr>
    <tr><td>Row with Index #1</td></tr>

    <tr><td>Row with Index #2</td></tr>
    <tr><td>Row with Index #3</td></tr>
  </table>

<script>

$("tr:even").css("background-color", "#bbbbff");

</script>
</body>
</html>
演示: