:odd 选择器

odd selector

描述:选择奇数元素、零索引的元素。请参阅even

  • 增补版本:1.0jQuery( ":odd" )

特别需要注意,基于0的索引意味着,有违直觉,:odd选择匹配集合里面的第二个元素、第四个元素,依此类推。

补充说明:

  • 因为:odd是一个jQuery扩展,不是CSS规范文档的一部分,所以使用:odd不能利用原生DOMquerySelectorAll()方法所提供的性能提梧。为了在利用:odd来选择元素时实现最佳性能,请先用纯CSS选择器选择元素,然后使用.filter(":odd")
  • 选中的元素是按它们在文档中出现的顺序。

示例:

找到奇数表格列,匹配第二个、第四个,依此类推(索引1、3、5……)。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>odd demo</title>
<style>
table {
background: #f3f7f5;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.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:odd" ).css( "background-color", "#bbbbff" );
</script>
</body>
</html>

演示: