Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有一种通过 jquery 查找具有特定值的数据属性的所有元素并将这些元素作为数组返回的基本方法?
IE<span data-productID="7">My product</span>
<span data-productID="7">My product</span>
选择具有特定属性值的元素的语法是:
[attr_name = attr_value]
在您的具体情况下,这将是:
$('span[data-product="7"]');
这将返回一个 jQuery 集合(不是数组),但可以像使用数字索引的数组一样访问它。如果你真的需要一个数组(也许是为了使用数组原型方法),你可以使用:
$('span[data-product="7"]').makeArray();