假设我有一个这样的 html 标记:
<div>
<p>
this is the parent
<p>
this the child
</p>
</p>
<p>
this is the parent
<p>
this the child
<p>this is third child</p>
</p>
</p>
</div>
在 div 我有五个<p>
标签,但我只想使用 jquery 选择器来选择没有类和 id 名称的两个顶级父 p 标签
有可能吗?我怎样才能做到这一点?