選擇器 | 實例 | 選取 |
---|---|---|
* | $("*") | 全部元素 |
#id | $("#lastname") | id="lastname" 的元素 |
.class | $(".intro") | 全部 class="intro" 的元素 |
element | $("p") | 全部 <p> 元素 |
.class.class | $(".intro.demo") | 全部 class="intro" 且 class="demo" 的元素 |
:first | $("p:first") | 第一個 <p> 元素 |
:last | $("p:last") | 最後一個 <p> 元素 |
:even | $("tr:even") | 全部偶數 <tr> 元素 |
:odd | $("tr:odd") | 全部奇數 <tr> 元素 |
:eq(index) | $("ul li:eq(3)") | 列表中的第四個元素(index 從 0 開始) |
:gt(no) | $("ul li:gt(3)") | 列出 index 大於 3 的元素 |
:lt(no) | $("ul li:lt(3)") | 列出 index 小於 3 的元素 |
:not(selector) | $("input:not(:empty)") | 全部不爲空的 input 元素 |
:header | $(":header") | 全部標題元素 <h1> - <h6> |
:animated | 全部動畫元素 | |
:contains(text) | $(":contains('W3School')") | 包含指定字符串的全部元素 |
:empty | $(":empty") | 無子(元素)節點的全部元素 |
:hidden | $("p:hidden") | 全部隱藏的 <p> 元素 |
:visible | $("table:visible") | 全部可見的表格 |
s1,s2,s3 | $("th,td,.intro") | 全部帶有匹配選擇的元素 |
[attribute] | $("[href]") | 全部帶有 href 屬性的元素 |
[attribute=value] | $("[href='#']") | 全部 href 屬性的值等於 "#" 的元素 |
[attribute!=value] | $("[href!='#']") | 全部 href 屬性的值不等於 "#" 的元素 |
[attribute$=value] | $("[href$='.jpg']") | 全部 href 屬性的值包含以 ".jpg" 結尾的元素 |
:input | $(":input") | 全部 <input> 元素 |
:text | $(":text") | 全部 type="text" 的 <input> 元素 |
:password | $(":password") | 全部 type="password" 的 <input> 元素 |
:radio | $(":radio") | 全部 type="radio" 的 <input> 元素 |
:checkbox | $(":checkbox") | 全部 type="checkbox" 的 <input> 元素 |
:submit | $(":submit") | 全部 type="submit" 的 <input> 元素 |
:reset | $(":reset") | 全部 type="reset" 的 <input> 元素 |
:button | $(":button") | 全部 type="button" 的 <input> 元素 |
:image | $(":image") | 全部 type="image" 的 <input> 元素 |
:file | $(":file") | 全部 type="file" 的 <input> 元素 |
:enabled | $(":enabled") | 全部激活的 input 元素 |
:disabled | $(":disabled") | 全部禁用的 input 元素 |
:selected | $(":selected") | 全部被選取的 input 元素 |
:checked | $(":checked") | 全部被選中的 input 元素 |
補充css
1 找到全部 p 元素,而且這些元素都必須是 div 元素的子元素:jquery
$("div > p");
app
2 設置頁面背景色:ide
$(document.body).css( "background", "black" );
函數
3 隱藏一個表單中全部元素:動畫
$(myForm.elements).hide()
;this
4 在文檔的第一個表單中,查找全部的單選按鈕(即: type 值爲 radio 的 input 元素)。code
$("input:radio", document.forms[0]);
orm
5 在一個由 AJAX 返回的 XML 文檔中,查找全部的 div 元素。xml
$("div", xml.responseXML);
6 動態建立一個 div 元素(以及其中的全部內容),並將它追加到 body 元素中。在這個函數的內部,是經過臨時建立一個元素,並將這個元素的 innerHTML 屬性設置爲給定的標記字符串,來實現標記到 DOM 元素轉換的。因此,這個函數既有靈活性,也有侷限性。
$("<div><p>Hello</p></div>").appendTo("body");
7 建立一個 <input> 元素必須同時設定 type 屬性。由於微軟規定 <input> 元素的 type 只能寫一次。
// 在 IE 中無效:
$("<input>").attr("type", "checkbox");
// 在 IE 中有效:
$("<input type='checkbox'>");
8 動態建立一個 div 元素(以及其中的全部內容),並將它追加到 body 元素中。在這個函數的內部,是經過臨時建立一個元素,並將這個元素的 innerHTML 屬性設置爲給定的標記字符串,來實現標記到 DOM 元素轉換的。因此,這個函數既有靈活性,也有侷限性。
$("<div>", {
"class": "test",
text: "Click me!",
click: function(){
$(this).toggleClass("test");
}
}).appendTo("body");
9 建立一個 <input> 元素,同時設定 type 屬性、屬性值,以及一些事件。
$("<input>", { type: "text", val: "Test", focusin: function() { $(this).addClass("active"); }, focusout: function() { $(this).removeClass("active"); }}).appendTo("form");