开发者

How to get elements with the different value of the same attribute in javascript or jquery?

开发者 https://www.devze.com 2023-03-16 15:15 出处:网络
I need to find elements with the different va开发者_如何学编程lue of the same attribute... This works-> $data.find(\"div[data-alpha=\'1\']\");

I need to find elements with the different va开发者_如何学编程lue of the same attribute... This works-> $data.find("div[data-alpha='1']"); But i need something like this-> $data.find('div[data-alpha='1']' + 'div[data-alpha='2']' .... So i want to find all elements which have the ,,data-alpha" atribute 1 or 2. Anyone have an idea how to do that? Thanks for all answers! Cheers!


Use the multiple-selector[docs].

$data.find("div[data-alpha='1'], div[data-alpha='2']")

This allows you to accumulate the results of different selectors by joining the selectors with a comma into a single selector.


Try the add() method (http://api.jquery.com/add/).


If you want to find all elements with the data-alpha attribute use

$data.find([data-alpha])

If you need elements with specific values, use:

$data.find([data-alpha=x],[data-alpha=y])
0

精彩评论

暂无评论...
验证码 换一张
取 消