jQuery :lt() 选择器 jQuery :gt() 选择器 jQuery :not() 选择器 jQuery :lt() 选择器 实例 选取前 4 个 <tr> 元素: $("tr:lt(4)") 试一试 定义和用法 :lt() 选择器选取 index 值小于指定数字的元素。 index 值从 0 开始。 最常见的用法:与其他选择器一起使用,选取指定组合中特定序号之前的元素(如上面的实例)。 提示: 请使用 :gt selector 来选取 index 值大于指定数字的元素。 语法 $(":lt( _index_ )") 参数 描述 _index_ 必需。规定要选择的元素。 会选取 index 值小于指定数字的元素。 jQuery :gt() 选择器 jQuery :not() 选择器