原文链接:https://www.w3school.com.cn/css/css_attribute_selectors.asp
选择器 | 例子 | 例子描述 |
---|---|---|
[attribute] | [target] | 选择带有 target 属性的所有元素 |
[attribute=value] | [target=_blank] | 选择带有 target="_blank" 属性的所有元素 |
[attribute~=value] | [title~=flower] | 选择带有包含 “flower” 一词的 title 属性的所有元素 |
[attribute | =value] | [lang |
[attribute^=value] | a[href^=“https”] | 选择其 href 属性值以 “https” 开头的每个 a 元素 |
[attribute$=value] | a[href$=".pdf"] | 选择其 href 属性值以 “.pdf” 结尾的每个 a 元素 |
[attribute*=value] | a[href*=“w3school”] | 选择其 href 属性值包含子串 “w3school” 的每个 a 元素 |