Jquery - 选择器 - 选择 div 中的每个元素

发布于 2024-10-21 23:39:05 字数 379 浏览 1 评论 0原文

有没有一种简单的方法可以使用 jQuery 选择 div 中的所有元素(或任何其他元素)?
这周我已经搜索了几个小时,并且我将继续用头撞键盘。

<div class="Someclass">
    <img src="" title="" />
    <ul>
        <li></li>
        <li><a href="" alt="" /></li>
    </ul>
</div>

我想要一种简单的方法来选择 .Someclass 中的所有元素,而不必调用每个元素。

Is there an easy way to select all elements within a div (or any other element) with jQuery?
I have been searching for hours this week and I will continue to bang my head against my keyboard.

<div class="Someclass">
    <img src="" title="" />
    <ul>
        <li></li>
        <li><a href="" alt="" /></li>
    </ul>
</div>

I want an easy way to select all elements within .Someclass without having to call out each element.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

失去的东西太少 2024-10-28 23:39:05

更简单的仅 jQuery 选择是 $("#divID *")。如您所知,在 CSS 中,a b 表示所有 b,它是 aa > 的后代。 b 表示所有 b,它是 a直接子代,因此 #myDiv * 表示所有具有 id="myDiv"

后代

The easier jQuery only selection would be $("#divID *"). As you know in CSS a b means all b which is descendant of a and a > b means all b which is direct child of a so #myDiv * means everything that is a descendant of a <div> with id="myDiv".

删除→记忆 2024-10-28 23:39:05

http://api.jquery.com/children/

$('div.someclass').children();

http://api.jquery.com/children/

$('div.someclass').children();
誰認得朕 2024-10-28 23:39:05

要获取所有子代和后代:

$('.SomeClass *')

仅获取直系子代:

$('.SomeClass > *')

To get all children and descendents:

$('.SomeClass *')

To get only direct children:

$('.SomeClass > *')
你的笑 2024-10-28 23:39:05

如果您想要 .Someclass 中的所有元素,请使用:

var allElements = $(".Someclass *");

If you want absolutely every element within .Someclass, use:

var allElements = $(".Someclass *");
清风不识月 2024-10-28 23:39:05

这在 Chrome 中有效:

$(".Someclass *").addClass("testing");

This works in Chrome:

$(".Someclass *").addClass("testing");
王权女流氓 2024-10-28 23:39:05

或者如果你想要一切而不仅仅是直接的孩子。 $('.someclass *')

or if you want everything not just direct children. $('.someclass *')

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文