[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天】
56 10
|
11天前
|
前端开发 UED 开发者
伪类选择器与伪元素选择器的区别
【10月更文挑战第23天】通过以上对伪类选择器和伪元素选择器的详细比较和分析,我们可以更清晰地理解它们之间的差异和各自的特点。在实际的网页设计和开发中,正确地选择和使用伪类选择器与伪元素选择器,能够为我们的页面带来更出色的视觉效果和更好的用户体验。同时,要不断关注浏览器的发展和更新,以确保我们的代码在各种环境下都能正常运行。
31 8
|
2月前
选择器
选择器。
23 2
|
2月前
选择器(2)
选择器(2)。
33 2
|
2月前
before选择器
before选择器。
45 1
|
2月前
after选择器
after选择器。
28 1
|
2月前
子代选择器和兄弟选择器
子代选择器和兄弟选择器。
28 2
|
12月前
before和after选择器
before和after选择器
60 0
|
JavaScript
jQuery选择器之基本选择器(简单)及层次选择器(重要)
jQuery选择器之基本选择器(简单)及层次选择器(重要)
201 37