重构jquery选择器表达式
有没有一种方法可以让我以更简洁的方式编写以下选择器(父 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在对象的上下文中列出您的类,如下所示:
编辑:jsFiddle 示例。
List your classes in the context of the object like so:
Edit: jsFiddle example.
我不确定我是否理解你
您可以使用 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.