我试图弄清楚如何找到不在特定父级内的元素。这是一个示例html:
<div class="id01">
<p>some text</p>
</div>
<p>some more text</p>
<p>some more more text</p>
好的,现在我需要找到不在父项#id01内的第一段,这就是我迷路的地方。我开始这样做
$('p:first').text(); //this way i would get the P inside DIV but I want to skip that one and count on next one that has no parent #01
希望我说清楚了。