<div id="grandfather">
<div id="uncle"></div>
<div id="father>
<div id="me"></div>
</div>
</div>
我在$(“#me”),我想选择我的叔叔,使用类似的东西:
$("#me").find("#uncle")
$("#me").next("#uncle")
$("#me").prev("#uncle")
怎么样?
答案 0 :(得分:21)
你可以使用$.parent
和$.prev
假设你的叔叔总是高于你的父亲:
$(this).parent().prev(); // where 'this' is #me
你也可以一直到你的祖父,并从那里找到叔叔:
$(this).parents("#grandfather").find(".uncles");
或者你可以搜索你父亲的兄弟姐妹:
$(this).parent().siblings("#uncle");
我建议您阅读jQuery API的Traversing部分以了解各种其他方法。
答案 1 :(得分:2)
var uncle = $('#me').parent().prev();
答案 2 :(得分:0)
$(this).parent().prev().append("This is uncle");