在同一父

时间:2016-12-20 20:47:06

标签: jquery

我有一些具有相同类名的元素,如下所示:

<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。怎么做?

1 个答案:

答案 0 :(得分:0)

这将选择.topic-text

的下一个实例

$('h4').on('click', function () { $(this).next('.topic-text'); });