jQuery 选择器

Posted CodingSherlock

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 选择器相关的知识,希望对你有一定的参考价值。

:animated 匹配在动画中的元素,该动画由jQuery产生

:contains(text) 匹配包含指定文本的元素

:disabled 匹配禁用元素

:empty 匹配没有子节点,没有文本内容的元素

:even 匹配列表中偶数序号的元素

:odd 匹配列表中的奇数序号的元素

:has(sel) 匹配的元素拥有匹配内嵌选择其sel的子孙元素

:not(sel)匹配的元素不匹配内嵌选择器sel

组合选择器

A >B  从A元素的子元素中,选取匹配B的元素

A+B  从A元素的下一个兄弟元素中,选取匹配B的元素

A~B   从A元素后面的兄弟元素中,选取匹配B的元素

选择器组

,分隔

选取方法

first()  

last()

slice()

filter()

not()

add()

find()

children()

next()

prev()

nextAll()

prevAll()

parent()

parents()

end() :  End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.

 

以上是关于jQuery 选择器的主要内容,如果未能解决你的问题,请参考以下文章

jquery标签选择器怎么循环

[ jquery 选择器 总览 ] jquery选择器总览

jquery选择器都有哪些

jQuery选择器

jQuery选择器概述

jQuery ---[jQuery选择器,jQuery对象的遍历]