层级选择器:
符号 | 解释 | 使用 |
空格 | 后代选择器 | $("div p").css("","") |
+ | 紧邻选择器 | $("div+p").css("","") |
~ | 兄弟选择器 | $("div~p").css("","") |
> | 自带选择器 | $("div>p").css("","") |
:eq(index) | 选择等于index索引值的元素 | |
:odd | 选择所有奇数 | |
:even | 选择所有偶数 | |
:lt(index) | 选择从0开始的一个数字,选择符号大于index | |
:gt(index) | 选择从0开始的一个数字,选择符号小于index | |
:first | 选择第一个元素 | |
:last | 选择最后一个元素 |
属性选择器 | ||
$("a[href]") | 选择所有href属性的元素 | |
$("a[href='http://ww.baidu.com']") | 选择所有href属性为http://www.baidu.com的元素 | |
$("a[href!="http://www.baidu.com"]") | 选择所有href属性不为http://www.baidu.com的元素 | |
$("a[href^=web]") | 选择所有以web开头的元素 | |
$("a[href$=web]") | 选择所有以web结尾的元素 | |
$("a[href*='i']") | 选择所有包含i这个字符的元素 | |
$("a[href][title='我']") | 选择所有符合指定属性规则的元素,都符合才会被选中 |
.parent() | 选择父级元素 | |
.children() | 选择子级元素 | |
.siblings() | 选择兄弟元素 | |
.eq(index) | 选择第index个元素 | |
.find() | 查钊元素 |
来源:https://www.cnblogs.com/battle-404/p/8530925.html