这似乎是一个非常棘手的问题,但我有一个超文本的OM结构,如:
<div class="1">
<div class="1a">
<div class="1aa"></div>
</div>
<div class="1b">
<a href="#">Link</a>
</div>
</div>
我需要挑选到<代码><div>,该编码为直接兄弟姐妹,例如:
$(function(){
$( a ).click(function(){
// select div .1a
});
});
I can t directly select div .1a
because there may be multiple instances of .1a
and I need to select the one thats nearest to the link.
任何帮助