jQuery $你必须选择绕过其他人的选择器

时间:2015-06-29 11:35:12

标签: jquery jquery-selectors

我正在使用jQuery。有必要引用类选择器.potatoes:

$('.apple .potatoes')

但它在选择器类中。不应该选择.orange。

<div class="apple">
     <div class="orange">
            <div class="potatoes" title="dont touch me">dont touch me</div>
     </div>
     <div class="potatoes" title="return to Me">return to Me</div>
</div>

2 个答案:

答案 0 :(得分:2)

使用直接child selector

$('.apple > .potatoes')

答案 1 :(得分:2)

使用children()功能:

$('.apple').children('.potatoes')