如何跳转到相同类型的下一个元素

时间:2016-01-14 19:05:59

标签: jquery

<div id="story">
<p>lorem ipsum...</p> // for example this is clicked
<textarea></textarea>
<p>lorem ipsum...</p> // need to select
<textarea></textarea>
<p>lorem ipsum...</p>
<textarea></textarea>
</div>

JS

$("#story > p").click(function() {
var a = $(this).next("p").html();
});

单击一个段落我需要选择下一个段落,而不是下一个元素(在这种情况下是textarea)。

1 个答案:

答案 0 :(得分:1)

next仅搜索紧邻的下一个元素。请使用nextAll,如下所示。

$("#story > p").click(function() {
    var a = $(this).nextAll("p:first").html();
});