我有一些具有相同类名的元素,如下所示:
<h4 class="topic-header">header name</h4>
<div class="topic-text">
some text...
</div>
<h4 class="topic-header">header name</h4>
<div class="topic-text">
some text...
</div>
<h4 class="topic-header">header name</h4>
<div class="topic-text">
some text
</div>
现在我想在单击标题后选择较低的即将到来的div。怎么做?
答案 0 :(得分:0)
这将选择.topic-text
$('h4').on('click', function () {
$(this).next('.topic-text');
});