jQuer 选择器
[ attribute〜= value ]选择器用于选择具有包含指定属性值的元素。
$("[attribute~=value]")
选择每个<img>元素具有alt属性值(包含单词“ Parrot”):
$(document).ready(function(){ $("img[alt~=Parrot]").css("border", "5px solid red"); });