[ attribute?= value ]選擇器用于選擇具有包含指定屬性值的元素。
$("[attribute~=value]")
選擇每個(gè)<img>元素具有alt屬性值(包含單詞“ Parrot”):
$(document).ready(function(){ $("img[alt~=Parrot]").css("border", "5px solid red"); });測(cè)試看看?/?
參數(shù) | 描述 |
---|---|
attribute | 指定要選擇的屬性名稱 |
value | 指定要選擇的字符串值 |