jQuery 中的后代选择器或自选择器

发布于 2024-08-27 21:12:10 字数 171 浏览 5 评论 0原文

我想在 jQuery('.haystack') 返回的所有元素中搜索具有类 needle 的所有元素,并尝试过 jQuery('.haystack .needle' ),但这似乎并不能解决一个元素同时具有两个类的情况。有没有一个选择器可以做到这一点?

I want to search for all elements with class needle in all elements returned by jQuery('.haystack') and have tried jQuery('.haystack .needle'), but this doesn't seem to pick up the case where an element has both classes. Is there a selector that will do this?

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

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

发布评论

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

评论(2

灯下孤影 2024-09-03 21:12:10

尝试组合选择器

jQuery('.haystack.needle, .haystack .needle');

这将选择所有.haystack还有 .needle 和任何 .needle (它是 .haystack 的后代),我认为这正是您所要求的:-)

Try combining selectors:

jQuery('.haystack.needle, .haystack .needle');

This will select all .haystacks that are also .needles and any .needle which is a descendant of a .haystack, which I think is exactly what you asked for :-)

空袭的梦i 2024-09-03 21:12:10

您可以在其中没有空格的情况下执行此操作,如下所示:

jQuery('.haystack.needle')

另一种方法是:

jQuery('.haystack').filter('.needle')

使用空格来查找带有 .needle.haystack 元素的 子元素 code>,如果没有空格,您将匹配相同元素,但表示它们现在必须具有两个类才能匹配。这也是 .filter() 所做的,它进一步减少了设置给这些元素的匹配项也与您传递给它的选择器匹配。

You do this with no space in there, like this:

jQuery('.haystack.needle')

The alternative is:

jQuery('.haystack').filter('.needle')

With the space it's looking for children of those .haystack elements with .needle, without the space, you're matching the same elements, but saying they must have both classes to match now. This is also what .filter() does, it further cuts down the matches set to those elements also matching the selector you pass into it.

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