如何使用jquery选择器来选择这样的元素?

时间:2012-05-24 07:58:07

标签: jquery-selectors parent

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

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

1 个答案:

答案 0 :(得分:0)

当然,只是做

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

子项只选择元素的直接子元素。别忘了为你的div设置一个id ...