菜单 学习猿地 - LMONKEY

VIP

开通学习猿地VIP

尊享10项VIP特权 持续新增

知识通关挑战

打卡带练!告别无效练习

接私单赚外块

VIP优先接,累计金额超百万

学习猿地私房课免费学

大厂实战课仅对VIP开放

你的一对一导师

每月可免费咨询大牛30次

领取更多软件工程师实用特权

入驻
14
0

jquery有几种选择器?

原创
05/13 14:22
阅读数 759

jquery有几种选择器?

很多种,大概归纳为9种。

1、基本的有id、标签、类、通配符选择器:

#id
element
.class
*

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

发表评论

0/200
14 点赞
0 评论
收藏
为你推荐 换一批