Jquery CSS 选择器需要满足三个标准
我正在尝试编写一个 CSS 选择器,它需要满足多个(三个标准)才能执行操作。
$('div[class*="clickout"]')
$('div[class*="preferred"]')
$('div[class*="test"]')
基本上我想确保满足所有三个条件。
I am trying to write a CSS selector that requires multiple (three criteria) to be met in order to enact an action.
$('div[class*="clickout"]')
$('div[class*="preferred"]')
$('div[class*="test"]')
Basically I want to ensure that all three conditions are met.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
链接属性选择器:
如果您正在寻找具有三个精确类名称的元素,例如
而不是具有三个单词作为部分或整个类名称的类,
那么您应该链接类选择器而不是属性选择器:
Chain the attribute selectors:
If you're looking for an element with the three exact class names, like
rather than with classes with the three words as partial or whole class names, like
Then you should chain class selectors instead of attribute selectors: