我有这个HTML结构
<img width="25" height="25" src=/data/apple_logo.jpg alt=Chocolate />
<input class="cake_checkboxes" style="vertical-align: bottom;" type="checkbox" name="option[232][]" value="23" id="option-value-23" />
<label for="option-value-23"> Chocolate</label>
<br />
<div style='display:none;' class="quantity">
......
如果我这样做
$('.cake_checkboxes:first').next('div')
或
$('.cake_checkboxes:first').next('.quantity')
我得到一个空值,但如果我这样做
$('.cake_checkboxes:first').next().next().next()
我得到了我需要的div ...任何关于错误的想法,或者是否有一种方法可以像jquery closest方法一样遍历