Home > Article > Web Front-end > Classification parsing jQuery selector
Basic selector:
#id match an element based on Id
.class somewhere Match all elements
selecttor1,selector2 Union set, Return the elements matched by the two selectors
Hierarchical selector:
ancestor descendant Match all descendant elements according to ancestors
parent>child Match all child elements according to parent elements, direct descendants
prev+next Match next The sibling elements are equivalent to the next() method
prev~siblings Matching the following sibling elements is equivalent to the nextAll() method The siblings() method matches all sibling elements
Simple filter selector:
: first or first() Matching The first element
:last or last() Matches the last element
:not(selector) Matches elements that are not matchable by selector
:even Matches elements with even index values, and the index numbers start from 0
:odd Matches elements with an odd index value, and the index number starts from 0
:eq(index) Matches elements with the specified index number, and the index number starts from 0
:gt(index) Matches elements with an index number greater than the given index value Element, the index number starts from 0
:lt(index) Matches the element whose index number is less than the given index value, the index number starts from 0
:header matches all header elements h1 h2 h3 h4 h5 h6
:animated match All elements that are being animated
Content filter selector:
:contains(text) Matches elements that contain the given text
:empty Matches all empty elements that do not contain child elements or text
:has(selector) Match Elements whose descendants contain selectors that can match the element
:parent ules hand constellation “ :display:"none"; elements, regardless of whether the CSS is inline, imported, or linked
:visible In elements with :display:"none"; [attribute] [attribute] Match elements containing the given attribute
[attribute=value] Matches elements with attribute =value
[attribute!=value] Matches elements with attribute but!=value
[attribute^=value] Matches elements whose attribute value starts with value
[attribute $=value] Match attribute value is an element that ends with value
[attribute*=value] Match attribute value contains elements with certain values, parts before and after, and in the middle are also counted
[selector][selector] Match attribute selector The intersection of
child element filter selector:
:nth-child(eq|even|odd|index) Get the child elements at a specific position of all parent elements
:first in in in in in ined in ints on the same position in all parent elements.所有: Last gets the last sub-element under all parent elements
: only-child to get the only element under all parent elements
Form object attribute filter selection:
: enabled to obtain all available elements in the form: disabled ] >>\\\\\":checked: Get all form elements 4b585e4072ae48febb52ffdbb1779221
:password Get all password box elements 520d2e5e6c1db4e8e7a8d9c16a9d6841
:radio Get all radio buttons 53566975f0144005a2bc7344d013535e
:checkbox Get all checkboxes 2213c9627c391f00ef101b1592023bcb
:submit Get all submit buttons304ad795417f176379d121aa93b316e4
:image Get all image buttons7c696951595ca52af93ef62fe7bceaa5
:reset Get all reset buttons< ;input type="reset" />
:button Get all buttons8e03557d3950bf880a2e4583affa2fab
:file Get all file upload boxes61b9b53f6d762f7c3b14ccfc7d4eaf40
1. Basic selector
(1), #id Matches an element based on the Id
$("#div1").css("background-color","red"); //匹配id为"div1"的元素 <div id="div1">我是一个DIV</div> //会选中该div元素
(2), element Matches the element based on the given element name
$("p").css("background-color","red"); //匹配页面所有的p元素 <p>我是一个P</p>
(3), class Matches elements according to the class attribute
$(".important").removeClass(); //匹配所有class="important"元素 <p class="important">我是一个p元素</p>
(4), selector1,selector2 Separate the selectors with commas to return the elements matched by each selector
$(".div1,#span1").css("background-color","red");
2. Level Selector
(1), ancestor descendant Matches all descendant elements based on ancestor elements, and returns the matched descendant elements, separated by spaces.
$("#div1 span").css("color","red"); <div id="div1"> <span>我是span1</span> ***会被选中,是#div1的后代span <div> <span>我是span3</span> ***会被选中,也是#div1的后代span </div> </div> <span>我是span2</span> ***不会被选中,不是#div1的后代
(2), parent > child Match all child elements according to the parent element and return all child elements separated by a greater than sign ">"
$("#div1 > span").css("color","red"); <div id="div1"> <span>我是span1</span> ***会被选中,是#div1的子元素span <div> <span>我是span3</span> ***不会被选中,是#div1的后代元素,但不是直接子元素 </div> </div> <span>我是span2</span> ***不会被选中,不是#div1的子元素
(3), prev + next Matches the next adjacent element immediately following the prev element separated by a plus sign "+".
Equivalent to .next() method
$(".p1 + p").css("color","red"); //此行代码相当于$(".p1").next().css("color","red"); <div> <p>我是第一个P</p> ***不会被选中,是class为p1的上一个了 <p class="p1">我是第二个P</p> ***prev本身并不会被选中 <p>我是第三个P</p> ***会被选中,是class为p1的下一个相邻元素 <p>我是第四个P</p> ***不会被选中,不是class为p1的下一个,是下二个了 </div>
(4), prev ~ sibings All sibling elements matching prev are separated by wavy lines "~"
Equivalent to nextAll() method
$(".p1 + p").css("color","red"); //此行代码相当于$(".p1").nextAll("p").css("color","red"); <div> <p>我是第一个P</p> ***不会被选中,是class为p1前面的元素 <p class="p1">我是第二个P</p> ***prev本身并不会被选中 <p>我是第三个P</p> ***会被选中,是class为p1后面的P兄弟元素 <p>我是第四个P</p> ***会被选中,也是class为p1后面的P兄弟元素 </div>
(5), select all sibling elements siblings() method
$(".p1").sibings("p").css("color","red"); <div> <p>我是第一个P</p> ***会被选中,是class为p1的P兄弟元素 <p class="p1">我是第二个P</p> ***prev本身并不会被选中 <p>我是第三个P</p> ***会被选中,是class为p1的P兄弟元素 <p>我是第四个P</p> ***会被选中,也是class为p1的P兄弟元素 </div>
3, simple filter selector
(1), first() or: first Select the first one that meets the conditions Element
$("#div1 > p:first").css("color","red") //此行代码相当于 $("#div1 > p").first().css("color","red"); <div id="div1"> <p>我是第一个P</p> ***会被选中,是id为#div1下的第一个P元素 <p>我是第二个P</p> ***不会被选中,是第二个P元素了 <p>我是第三个P</p> ***不会被选中,是第三个P元素了 </div>
(2), last() or: last ( 5), odd
(6), eq (index)
|
(8), lt(index) 」get will be obtained for all elements whose index value is less than index is less than index, and the index number starts from 0 alone , h6$("#div1 > p:last").css("color","red"); //此行代码相当于 $("#div1 > p").last().css("color","red"); <div id="div1"> <p>我是第一个P</p> ***不会被选中,是第一个 <p>我是第二个P</p> ***不会被选中,是第二个 <p>我是第三个P</p> ***会被选中,id为#div1下的最后一个P元素 </div>(10), animated The element that is performing the animation effect 4. Content filter selector (1), :contains(text) Get the element that contains the given text
$("#div1 > p:not('.p1')").css("color","red"); <div id="div1"> <p>我是第一个P</p> ***会被选中 <p class="p1">我是第二个P</p> ***不会被选中,因为符合了:not里的条件 class="p1" <p>我是第三个P</p> ***会被选中 </div>
(2), :empty Get an empty element that does not contain child elements or text
$("#div1 > p:even").css("color","red"); <div id="div1"> <p>我是第一个P</p> ***会被选中,索引号0 <p>我是第二个P</p> ***不会被选中,索引号1 <p>我是第三个P</p> ***会被选中,索引号2 <p>我是第四个P</p> ***不会被选中,索引号3 <p>我是第五个P</p> ***会被选中,索引号4 </div>(3), :has(selector) Select the element containing the element matched by the selector, (note that it is not limited to direct children Elements are counted as long as they are descendants)
$("#div1 > p:odd").css("color","red"); <div id="div1"> <p>我是第一个P</p> ***不会被选中,索引号0 <p>我是第二个P</p> ***会被选中,索引号1 <p>我是第三个P</p> ***不会被选中,索引号2 <p>我是第四个P</p> ***会被选中,索引号3 <p>我是第五个P</p> ***不会被选中,索引号4 </div>(4), :parent Elements containing child elements or text elements
$("#div1 > p:eq(1)").css("color","red"); <div id="div1"> <p>我是第一个P</p> ***不会被选中,索引号为0 <p>我是第二个P</p> ***不会被选中,索引号为1 <p>我是第三个P</p> ***不会被选中,索引号为2 <p>我是第四个P</p> ***不会被选中,索引号为3 </div>5. Visibility filter selector (1), :hidden Select all invisible elements
$("#div1 > p:gt(1)").css("color","red"); <div id="div1"> <p>我是第一个P</p> ***不会被选中,索引号为0 <p>我是第二个P</p> ***不会被选中,索引号为1 <p>我是第三个P</p> ***会被选中,索引号为2大于1了 <p>我是第四个P</p> ***会被选中,索引号为3大于1了 </div>to
erated in in me in in me in in in opinion on in attribute
(4), [attribute^=value] Get the element whose attribute value starts with value$("#div1 > p:lt(1)").css("color","red"); <div id="div1"> <p>我是第一个P</p> ***会被选中,索引号为0,小于1 <p>我是第二个P</p> ***不会被选中,索引号为1,不小于1 <p>我是第三个P</p> ***不会被选中,索引号为2大于1了 <p>我是第四个P</p> ***不会被选中,索引号为3大于1了 </div>(5), [attribute$=value] Get the element whose attribute value ends with value
$("#div1 > :header").css("color","red"); <div id="div1"> <p>我是一个P</p> ***不会被选中,不是标题类型元素 <span>我是一个span</span> ***不会被选中,不是标题类型元素 <h1>我是一个h1</h1> ***会被选中,h1是标题类型元素 <h6>我是一个h6</h6> ***会被选中,h6是标题类型元素 </div>
(6)、[attribute*=value] 获取属性值包含value值元素
$("div[class*=div]").css("font-size","30px"); <div class="div1">我是div1</div> ***会被选中,属性值包含div <div class="1div">我是1div</div> ***会被选中,属性值包含div <div class="1div1">我是1div1</div> ***会被选中,属性值包含div <div class="abc">我是abc</div> ***会被选中,属性值包含div
(7)、[selector][selector][selector] 获取属性交集元素
$("div:[class][title=title1]").css("background-color","red"); <div class="div1" title="title1">我是div1,title1</div> ***会被选中,有class属性且title属性等于title1 <div class="div1" title=title2>我是div1,title2</div> ***不会被选中,虽然有class属性,但是title属性不等于title2 <div class="div3">我是div3</div> ***不会被选中,没有title属性
7、子元素过滤选择器
(1):nth-child(eq|even|odd|index) 获取每个父元素下的特定位置元素,索引号从1开始
$("div>p:nth-child(1)").css("background-color","red"); //选中每一个父元素下的div下的第一个直接P元素 <div> <p>我是第一个P</p> *** 会被选中,是div下的第一个子P元素 <p>我是第二个P</p> *** 不会被选中,是第二个了 </div> <div> <P>我是第三个P</P> *** 会被选中,是div下的第一个子P元素 <P>我是第四个P</P> *** 不会被选中,是第二个了 </div>
(2):first-child 选中每个父元素下的第一个
$("p:first-child").css("background-color","red"); //选中每一个父元素下的第一个P元素 <div> <p>我是第一个P</p> *** 会被选中,是div下的第一个子P元素 <p>我是第二个P</p> *** 不会被选中,是第二个了 </div> <ul> <li> <P>我是第三个P</P> *** 会被选中,是div下的第一个子P元素 <P>我是第四个P</P> *** 不会被选中,是第二个了 </li> </ul>
(3)、:last-child 选中每一个父元素下的最后一个元素
$("p:last-child").css("background-color","red"); //选中每一个父元素下的第一个P元素 <div> <p>我是第一个P</p> *** 不会被选中,不是某父元素的最后一个子P元素 <p>我是第二个P</p> *** 会被选中,是div元素下的最后一个子P元素 </div> <ul> <li> <P>我是第三个P</P> *** 不会被选中,不是某父元素下的最后一个子P元素 <P>我是第四个P</P> *** 会被选中,是div元素下的最后一个P元素 </li> </ul>
(4)、:only-child 获取每个父元素下唯一仅有的一个子元素
$("p:only-child").css("background-color","red"); <div> <p>我是第一个P</p> ***不会被选中,不是某父元素下的唯一一个P元素 <p>我是第二个P</p> ***不会被选中,不是某父元素下的唯一一个P元素 </div> <div> <span>我是一个span</span> ***不会被选中,不是某父元素下的唯一一个P元素 <p>我是第三个P</p> ***不会被选中,不是某父元素下的唯一一个span元素 </div> <div> <p>我是一个P</p> ***会被选中,是div下的唯一一个P元素 </div>
8、表单对象属性过滤选择器
(1)、:enabled 获取表单中所有属性为可用的元素
$("input:enabled").val("jQuery表单对象属性过滤选择器"); <div> <input type="text" value="我是一个可用的input" /> ***会被选中,是一个可用的表单元素 <input type="text" value="我是一个不可用的input" disabled="disabled" /> ***不会被选中,是不可用的表单元素 </div>
(2)、:disabled 获取表单中属性不可用的元素
$("input:enabled").val("jQuery表单对象属性过滤选择器"); <div> <input type="text" value="我是一个可用的input" /> ***不会被选中,是一个可用的表单元素 <input type="text" value="我是一个不可用的input" disabled="disabled" /> ***会被选中,是不可用的表单元素 //注意,jQuery能够操作不可用 的表单元素 </div>
(3)、:checked 获取表单中被选中的元素 从属性能够知道用户选中了哪个
$("input:checked").val("jQuery"); <div> <input type="checkbox" checked="checked" value="1">选中 <input type="checkbox" value="0">未选中 </div>
(4)、:selected 获取表单中被选中的元素 此属性能够知道用户选择了哪个
alert($("input:selected").text("")); //获取所有被选中的option元素 <div> <selected> <option value="0" selected="selected">option1</option> ***会被选中 <option value="1">option2</option> ***不会被选中,因为本option不是选中的。 </selected> </div>
9、表单选择器
(1)、:input 获取所有的input、textarea、select
$(":input").val("jQuery"); <div> <textarea>我是一个兵</textarea> ***会被选中 <input text="button" value="" /> ***会被选中 <p>我是一个P</p> ***不会被选中 </div>
(2)、:text 获取所有的单行文本框,也就是ec1428ba487b0fd5d7fe857f9d4b2faa元素
$(":text").val("jQuery"); <div> <input type="text" value="我是一个input" /> ***会被选中,是单行文本框 <input type="button" value="确定" /> ***不会被选中,不是单行文本框 <textarea>我是一个textarea</textarea> ***不会被选中,不是单行文本框 </div>
(3)、:password 获取所有的密码框 也就是c1316d16b1c962d004723ea50186d536元素
$(":password").hide(3000); <div> <input type="password" /> ***会被选中,是密码框 <input type="text" value="我是一个文本框" /> ***不会被选中,是文本框 </div>
(4)、:radio 获取所有的单选按钮
$(":radio").hide(3000); <div> <input type="radio" />我是一个radio ***单选按钮会被选中,但是后面的文字不会 <input type="text" />我是一个文本框 ***不会被选中 </div>
(5)、:checkbox 获取所有的复选框
$(":checkbox").hide(3000); <div> <input type="checkbox" />我是一个checkbox ***复选框会被选中,文本不会 <input type="text" />我是一个文本框 ***不会被选中,不是复选框 </div>
(6)、:submit 获取所有的提交按钮
$(":submit").hide(3000); <div> <input type="submit" value="提交"> ***会被选中,是提交按钮 <input type="text" value="我是一个文本框"> ***不会被选中,不是提交按钮 </div>
(7)、:image 获取所有的图像域
$(":image").attr("title","我是一个图片按钮"); <div> <input type="image" src="http://www.baidu.com/img/baidu_sylogo1.gif" /> ***会被选中 <input type="text" value="我是一个文本框" /> ***不会被选中,不是图片按钮 </div>
(8)、:reset 获取所有重置按钮
$(":reset").hide(3000); <div> <input type="reset" value="重置"> ***会被选中,是重置按钮 <input type="text" value="我是一个文本框"> ***不会被选中,不是重置按钮 </div>
(9)、:button 获取所有的按钮
$(":button").hide(3000); <div> <input type="button" value="确认" /> ***会被选中,是按钮元素 <input type="text" value="我是一个文本框" /> ***不会被选中,不是按钮元素 </div>
(10)、:file 获取所有的文件域
$(":file").hide(3000); <div> <input type="file" title="file" /> <input type="text" value="我是一个文本框" /> </div>