:lt() Selector
lt selector
version added: 1.0jQuery(':lt(index)')
- index
- Zero-based index.
描述: 选择所有小于给定索引值的元素
索引相关的选择
这种索引相关的选择器(包括这个“小于”选择器)过滤他们前面的匹配表达式的集合元素。他们缩小匹配元素的顺序范围。例如,如果第一个选择器使用类选择器( .myclass
)进行匹配,四个元素返回,这些元素是给定索引是0
到3
。
请注意,由于JavaScript数组使用基于0的索引 ,这些选择器也是如此。这就是为什么$('.myclass:lt(1)')
选择器选择文档中第一个MyClass类的元素,而不是选择任何元素。与此相反,:nth-child(n)
是基于1的索引的,以符合CSS规范。
Example:
Finds TDs less than the one with the 4th index (TD#4).
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<table border="1">
<tr><td>TD #0</td><td>TD #1</td><td>TD #2</td></tr>
<tr><td>TD #3</td><td>TD #4</td><td>TD #5</td></tr>
<tr><td>TD #6</td><td>TD #7</td><td>TD #8</td></tr>
</table>
<script>$("td:lt(4)").css("color", "red");</script>
</body>
</html>