<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)。
答案 0 :(得分:1)
next
仅搜索紧邻的下一个元素。请使用nextAll
,如下所示。
$("#story > p").click(function() {
var a = $(this).nextAll("p:first").html();
});