eq 第几个索引
$("li:eq(2)")
gt 大于第几个索引
$("li:gt(2)")
lt(小于)前几个索引
$("li:lt(2)")
$("li:parent")
$("li:has(.span)") 选择器
$("li:contains(列表)") 文本
:first-child 匹配所给选择器( :之前的选择器)的第一个子元素
:last-child 匹配最后一个子元素
标签:gt,第几个,基础,JQ,li,索引,eq,选择器
来源: https://www.cnblogs.com/katanfei/p/15527162.html