粗略的 HTML 结构:
<div class="wrapper">
<p></p>
<p></p>
<p></p>
</div>
<div class="wrapper">
<p></p>
<p></p>
<p></p>
</div>
<div class="wrapper">
<p></p>
<p></p>
<p></p>
</div>
假设我有这样的功能:
$('div.wrapper').each(function() {
// more stuff
});
我基本上想做这样的事情:
$(this).('p:eq(2)').remove();
或者
$(this).('p:contains("old text")').text('new text');
从$(this)
我只想选择其中的子元素开始。