jQuery 选择具有特定类的 div,该类没有其他类
<div class="fuu">
...
</div>
<div class="fuu no">
...
</div>
...
除了具有 .no
类的内容之外,如何选择所有 fuu
内容?
<div class="fuu">
...
</div>
<div class="fuu no">
...
</div>
...
How can I select all fuu
's besides the ones that have the .no
class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
:not()
排除其他类:Use
:not()
to exclude the other class:您还可以使用以下内容过滤掉“.no”类:
You can also filter out the '.no' class with something like:
在添加另一组引号之前,我无法得到第一个答案。这给了我选择排除第二类的类的预期结果。
I couldn't get the first answer to work until I added another set of quotes. This gave me the desired result of selecting the class that excluded a second class.
获取div的类名,如果类名中有空格则表示它有多个类!
get the div's class name, if it has a SPACE in the class name then it means it has more than one class !