下麵列舉了61種jQuery 選擇器 參考 ...
下麵列舉了61種jQuery 選擇器 參考
選擇器 | 語句 | 描述 |
---|---|---|
* | $("*") | 選擇所有元素 |
#id | $("#lastname") | id=“lastname”的元素 |
.class | $(".intro") | class=“intro”的所有元素 |
.class,.class | $(".intro,.demo") | 所有帶有“intro”或“demo”類的元素 |
element | $("p") | 所有<p>元素 |
el1,el2,el3 | $("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") | 每個<div>元素旁邊的<p>元素 |
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)") | 具有以“de”開頭的lang屬性值的所有<p>元素 |
[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']") | title屬性值等於'Tomorrow'的所有元素,或者以'Tomorrow'開頭,後跟連字元 |
[attribute^=value] | $("[title^='Tom']") | 標題屬性值以“Tom”開頭的所有元素 |
[attribute~=value] | $("[title~='hello']") | 具有title屬性值的所有元素包含特定單詞“hello” |
[attribute*=value] | $("[title*='hello']") | 標題屬性值包含單詞“hello”的所有元素 |
:input | $(":input") | 所有輸入元素 |
:text | $(":text") | type =“text”的所有輸入元素 |
:password | $(":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") | 所有啟用的輸入元素 |
:disabled | $(":disabled") | 所有禁用的輸入元素 |
:selected | $(":selected") | 所有選定的輸入元素 |
:checked | $(":checked") | 所有選中的輸入元素 |