重构jquery选择器表达式

发布于 2025-01-01 07:11:43 字数 136 浏览 1 评论 0原文

有没有一种方法可以让我以更简洁的方式编写以下选择器(父 ID 一次又一次地重复)。

$("#parent_id .class1 , #parent_id .class2,....")

谢谢!

Is there a way that I can write the following selector in a less verbose fashion (the parent id is being repeated again and again).

$("#parent_id .class1 , #parent_id .class2,....")

Thanx!

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

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

发布评论

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

评论(3

流年已逝 2025-01-08 07:11:43
$("#parent_id").find(".class1, .class2, .class3").....
$("#parent_id").find(".class1, .class2, .class3").....
猫九 2025-01-08 07:11:43

在对象的上下文中列出您的类,如下所示:

$('.class1, .class2, .class3', $('#parent_id'))

编辑jsFiddle 示例

List your classes in the context of the object like so:

$('.class1, .class2, .class3', $('#parent_id'))

Edit: jsFiddle example.

稀香 2025-01-08 07:11:43

我不确定我是否理解你
您可以使用 JQuery 选择多个元素: http://api.jquery.com/multiple-selector/

所以类似 $(".class1, .class2");应该有效。

I'm not sure if I understand you
You can select multiple elements using JQuery: http://api.jquery.com/multiple-selector/

So something like $(".class1, .class2"); should work.

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