How to select elements with jQuery that have a certain value in a data attribute array
is there a way in jQuery to sele开发者_如何学Cct elements that have a certain value in a data attribute array?
Consider this snippet of 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>
What is the best way in jQuery to select all persons with "New York" in the data-city attribute?
even though i don't see your html, it should be:
$('[data-city*="New York"]')
精彩评论