0

jQuery 中有没有办法在数据属性数组中选择具有特定值的元素?

考虑这个 html 片段:

<li id="person1" data-city="Boston, New York, San Fransisco">
    Person name 1
</li>
<li id="person1" data-city="Los Angeles, New York, Washington">
    Person name 2
</li>

jQuery 中选择 data-city 属性中所有具有“New York”的人的最佳方法是什么?

4

1 回答 1

1

即使我没有看到您的 html,它也应该是:

$('[data-city*="New York"]')
于 2011-09-08T07:07:09.103 回答