[jQueyr]选择器

简介: jQuery选择器(1)基本#id element .class * selector1,selector2,selectorN (2)层次选择器:ancestor descendant parent > child prev + nex...
jQuery选择器
(1)基本
#id 
element 
.class 
* 
selector1,selector2,selectorN 

(2)层次选择器:
ancestor descendant 
parent > child 
prev + next 
prev ~ siblings 

(3)基本过滤器选择器
:first 
:last 
:not 
:even 
:odd 
:eq 
:gt 
:lt 
:header 
:animated 

(4)内容过滤器选择器
:contains 
:empty 
:has 
:parent 

(5)可见性过滤器选择器
:hidden 
:visible 

(6)属性过滤器选择器
[attribute] 
[attribute=value] 
[attribute!=value] 
[attribute^=value] 
[attribute$=value] 
[attribute*=value] 
[attrSel1][attrSel2][attrSelN] 

(7)子元素过滤器选择器
:nth-child 
:first-child 
:last-child 
:only-child 

(8)表单选择器
:input 
:text 
:password 
:radio 
:checkbox 
:submit 
:image 
:reset 
:button 
:file 
:hidden 

(9)表单过滤器选择器
:enabled 
:disabled 
:checked 
:selected
相关文章
|
6月前
|
前端开发 开发者
类选择器和伪类选择器有何不同
类选择器和伪类选择器有何不同【2月更文挑战第26天】
64 10
|
2月前
选择器(2)
选择器(2)。
44 2
|
2月前
选择器
选择器。
32 2
|
2月前
after选择器
after选择器。
30 1
|
2月前
before选择器
before选择器。
47 1
|
2月前
子代选择器和兄弟选择器
子代选择器和兄弟选择器。
28 2
before和after选择器
before和after选择器
60 0
|
JavaScript
jQuery选择器之基本选择器(简单)及层次选择器(重要)
jQuery选择器之基本选择器(简单)及层次选择器(重要)
203 37
|
前端开发 JavaScript
【CSS】基础选择器,包括标签选择器、类选择器、id选择器和通配符选择器...
有关基础选择器的学习记录,包括标签选择器、类选择器、id选择器和通配符选择器...
397 0
【CSS】基础选择器,包括标签选择器、类选择器、id选择器和通配符选择器...