jQuery的选择器
使用我们的jQuery选择测试仪来演示不同的选择。
选择 | 例 | 选择 |
---|---|---|
* | $("*") | 所有元素 |
# id | $("#lastname") | 与元素id="lastname" |
. class | $(".intro") | 与所有元素class="intro" |
. class, . class | $(".intro,.demo") | 与所有元素class "intro"或"demo" |
element | $("p") | 所有<p>元素 |
el1 , el2 , el3 | $("h1,div,p") | 所有<h1>, <div> <p> <h1>, <div> <p>元素 |
:first | $("p:first") | 第一个<p>元素 |
:last | $("p:last") | 最后一个<p>元素 |
:even | $("tr:even") | 所有甚至<tr>元素 |
:odd | $("tr:odd") | 所有奇数<tr>元素 |
:first-child | $("p:first-child") | 所有<p>这是他们的父母的第一个孩子元素 |
:first-of-type | $("p:first-of-type") | 所有<p>这是第一要素<p>它们的父元素 |
:last-child | $("p:last-child") | 所有<p>元素是其父的最后一个子 |
:last-of-type | $("p:last-of-type") | 所有<p>元素是最后<p>它们的父元素 |
:nth-child( n ) | $("p:nth-child(2)") | 所有<p>元素是其父母的第二个孩子 |
:nth-last-child( n ) | $("p:nth-last-child(2)") | 所有<p>元素是其父母的第二个孩子,从最后一个子计数 |
:nth-of-type( n ) | $("p:nth-of-type(2)") | 所有<p>这是第二个元素<p>它们的父元素 |
:nth-last-of-type( n ) | $("p:nth-last-of-type(2)") | 所有<p>这是第二个元素<p>它们的父元素,从最后一个子计数 |
:only-child | $("p:only-child") | 所有<p>这是他们的父母的独子元素 |
:only-of-type | $("p:only-of-type") | 所有<p>这是唯一的孩子,它的类型,它们的父元素 |
parent > child | $("div > p") | 所有<p>这是一个直接子元素<div>元素 |
parent descendant | $("div p") | 所有<p>这是一个的后代元素<div>元素 |
element + next | $("div + p") | 在<p>元素是一个接一个<div>元素 |
element ~ siblings | $("div ~ p") | 所有<p>这是姐弟元素<div>元素 |
:eq( index ) | $("ul li:eq(3)") | 在列表中的第四个元素(索引从0开始) |
:gt( no ) | $("ul li:gt(3)") | 与索引列表元素大于3 |
:lt( no ) | $("ul li:lt(3)") | 与索引列表元素小于3 |
:not( selector ) | $("input:not(:empty)") | 所有输入元素不为空 |
:header | $(":header") | 所有头元素<h1>, <h2> ... |
:animated | $(":animated") | 所有的动画元素 |
:focus | $(":focus") | 当前具有焦点的元素 |
:contains( text ) | $(":contains('Hello')") | 其中包含文本的所有元素"Hello" |
:has( selector ) | $("div:has(p)") | 有一个<p>元素所有<div>元素 |
:empty | $(":empty") | 这是空的所有元素 |
:parent | $(":parent") | 这是另一种元素的父所有元素 |
:hidden | $("p:hidden") | 所有隐藏的<p>元素 |
:visible | $("table:visible") | 所有可见的表 |
:root | $(":root") | 该文档的根元素 |
:lang( language ) | $("p:lang(de)") | 所有<p>用lang属性值开始的元素"de" |
[ attribute ] | $("[href]") | 与所有元素href属性 |
[ attribute = value ] | $("[href='default.htm']") | 与所有元素href属性值等于"default.htm" |
[ attribute != value ] | $("[href!='default.htm']") | 与所有元素href属性值不等于"default.htm" |
[ attribute $= value ] | $("[href$='.jpg']") | 与所有元素href结尾的属性值".jpg" |
[attribute|=value] | $("[title|='Tomorrow']") | 带有标题的所有元素属性值等于'Tomorrow' ,或开始'Tomorrow'后跟一个连字符 |
[attribute^=value] | $("[title^='Tom']") | 带有标题的所有元素属性值开始的"Tom" |
[attribute~=value] | $("[title~='hello']") | 具有title属性值的所有元素都包含特定单词"hello" |
[attribute*=value] | $("[title*='hello']") | 具有title属性值的所有元素都包含单词"hello" |
:input | $(":input") | 所有输入元素 |
:text | $(":text") | 所有输入元素与type="text" |
:password | $(":password") | 所有输入元素与type="password" |
:radio | $(":radio") | 所有输入元素与type="radio" |
:checkbox | $(":checkbox") | 所有输入元素与type="checkbox" |
:submit | $(":submit") | 与所有的输入元素type="submit" |
:reset | $(":reset") | 与所有的输入要素type="reset" |
:button | $(":button") | 所有输入元素与type="button" |
:image | $(":image") | 所有输入元素与type="image" |
:file | $(":file") | 所有输入元素与type="file" |
:enabled | $(":enabled") | 所有enabled输入元素 |
:disabled | $(":disabled") | 所有disabled输入元素 |
:selected | $(":selected") | 所有selected输入元素 |
:checked | $(":checked") | 所有checked输入元素 |