jQuery Attribute Selectors OR Operation

2019-04-18 12:42发布

问题:

Here is my html:

<div id="l">l</div>
<div id="a">a</div>
<div id="i">i</div>

How to change the color of only the l and a attributed elements? I searched for a selector with OR, something like this:

$(function(){
    $('div[id=l,a]').css('color','red');
});

It's not working, is there something like that in jQuery?

EDIT Thank you guys it's working now:

$('[id=l], [id=a]').css('color', 'red');

But what if I want to search for those IDs inside a <div> like $('[id=l], [id=a]','div'). This doesn't work, how should I do it?

回答1:

$(function(){
    $('#l, #a').css('color','red');
});

Fiddle: http://jsfiddle.net/maniator/2Xuat/