admin管理员组文章数量:1344316
This is an illustration of a part of my DOM:
I want to trigger an effect on div with class des
(which is in an odd div
) on click event of div
with class but
(which is in the previous even div
)
How can I select des
from but
?
This is an illustration of a part of my DOM:
I want to trigger an effect on div with class des
(which is in an odd div
) on click event of div
with class but
(which is in the previous even div
)
How can I select des
from but
?
2 Answers
Reset to default 8Trivially, if this
is the clicked .but
element:
$(this).parent().next().children('.des')
This does assume that there are no other elements in the way, i.e. that the .even
and .odd
elements are immediate siblings, and that .but
and .des
are immediately children of their respective .even
and .odd
ancestors.
Less efficiently, but guaranteed to work with any arbitrary number of additional (non-matching) elements in the tree would be:
$(this).closest('.even').nextAll('.odd').first().find('.des')
It depends on your markup. Something like this should work, though:
$('.but').on('click', function () {
$(this).closest('.even').next().find('.des');
});
本文标签: javascriptSelecting parent39s next sibling39s children in jQueryStack Overflow
版权声明:本文标题:javascript - Selecting parent's next sibling's children in jQuery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778104a2537353.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论