0

假设我有一个这样的 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 标签

有可能吗?我怎样才能做到这一点?

4

1 回答 1

0

当然,只是做

$('div').children('p)

children 只选择元素的直接子元素。不要忘记为您的 div 设置一个 id ......

于 2012-05-24T08:00:24.530 回答