特定の親の内部にない要素を見つける方法を見つけようとしています。サンプル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
私がそれを明らかにしたことを望みます。