jQuery $ 你必须select一个select或者绕过别人
jQuery $ You must select a selector bypassing others
我正在使用 jQuery。需要参考class选择器.potatoes:
$('.apple .potatoes')
但它在选择器class内。不应该选择橙色。
<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>
直接使用child selector:
$('.apple > .potatoes')
使用children()函数:
$('.apple').children('.potatoes')
我正在使用 jQuery。需要参考class选择器.potatoes:
$('.apple .potatoes')
但它在选择器class内。不应该选择橙色。
<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>
直接使用child selector:
$('.apple > .potatoes')
使用children()函数:
$('.apple').children('.potatoes')