[ Attribute = value ]选择器用于选择具有指定属性和值[ [attribute=value] 的元素。
$("[attribute='value']")
选择每个<a>元素的href属性值等于“ / CSS3 /”:
$(document).ready(function(){ $("a[href='/CSS3/']").css({"background":"green", "color":"white"}); });测试看看‹/›
参数 | 描述 |
---|---|
attribute | 指定要选择的属性名称 |
value | 指定要选择的值 |