English 中文(简体)
如何使用 jquery 选择器来选择这样的元素?
原标题:How to use jquery selector to select elements like this?

假设我有一个 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 中,我有 5 个 标签, 但我只想要使用 jquery 选择器来选择两个没有类和 id 名的顶端父 p 标签

有可能吗 我怎样才能做到呢

最佳回答

当然,只要做

$( div ).children( p)

孩子们只选择元素的直接子孙。 不要忘了设置您的 div 的代号...

问题回答

暂无回答




相关问题
Get element from selector given an index with jQuery

var items = $(".myClass"); The code above returns a number of items when used to select all elements. How can I select a specific element, for example the second one? Neither items(2) nor items[2] ...

jQuery Selector not working right

Okay, I cannot figure out what I m doing wrong here... Take the following jQuery selector... $( tr[batchid]:has(span.chkselb input:checked) span[id=assetcount] ) This returns 2 elements. Yet if I ...

jQuery select where attribute = value

I am trying to select an input where the value equals a dynamic value trimmed = jQuery.trim(a); preSelectedCheckBox = $(this).find("input[value=" + trimmed + "]"); The element exists but I ...

help with onseek and selectors

I am using this: $(function() { // initialize scrollable window.api = $("div.scrollable").scrollable({ clickable: true, activeClass: "active",...

Object-Oriented jQuery Question

$("#e1").click(function() { $("#descriptions div").removeClass("show"); $("#e1d").addClass("show"); }); $("#e2").click(function() { $("#descriptions div").removeClass("show"); $("#e2d")....

热门标签