如何使用jQuery识别具有多个匹配属性的元素?

时间:2013-08-03 08:06:34

标签: jquery jquery-selectors

<div class="something" data-id="1" data-count="5">Some text here</div>

<div class="something" data-id="2" data-count="14">Some text here</div>

现在我如何使用jQuery向<div>添加一个特定的类说“addthisclass”,其中'data-id'等于1而'data-count'等于5?

修改

'某事'就是这个类。我把它输入为id。

1 个答案:

答案 0 :(得分:3)

您可以使用多个属性选择器:

$("div[data-id=1][data-count=5]").addClass("addthisclass");

如果需要,您也可以将它们与类选择器结合使用:

$("div.something[data-id=1][data-count=5]").addClass("addthisclass");