jQuery [attribute~=value] 属性选择器

jQuer 选择器

[ attribute〜= value ]选择器用于选择具有包含指定属性值的元素。

语法:

$("[attribute~=value]")

实例

选择每个<img>元素具有alt属性值(包含单词“ Parrot”):

$(document).ready(function(){
  $("img[alt~=Parrot]").css("border", "5px solid red");
});
测试看看‹/›

参数值

参数描述
attribute指定要选择的属性名称
value指定要选择的字符串值

jQuer 选择器