jQuery 选择具有特定类的 div,该类没有其他类

发布于 2024-10-30 09:35:59 字数 184 浏览 1 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(4

一抹淡然 2024-11-06 09:35:59

使用 :not() 排除其他类:

$('.fuu:not(.no)')

Use :not() to exclude the other class:

$('.fuu:not(.no)')
迟到的我 2024-11-06 09:35:59

您还可以使用以下内容过滤掉“.no”类:

$('.fuu').not('.no');

You can also filter out the '.no' class with something like:

$('.fuu').not('.no');
傲娇萝莉攻 2024-11-06 09:35:59

在添加另一组引号之前,我无法得到第一个答案。这给了我选择排除第二类的类的预期结果。

$(".fuu:not('.no')").hide();

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.

$(".fuu:not('.no')").hide();
梦醒时光 2024-11-06 09:35:59

获取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 !

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