gpt4 book ai didi

jQuery 不是 : selector with OR

转载 作者:太空宇宙 更新时间:2023-11-03 20:41:20 25 4
gpt4 key购买 nike

我有 3 个 CSS 类 a、b、c

我想选择“a”类中但不在“b”或“c”中的所有元素例如

class="a" <- select
class="anyThing" <- do not select
class="a anyThing" <- select
class="a b" <- do not select
class="a c" <- do not select
class="a anything c" <- do not select

这是我正在尝试但没有成功的方法:

$('.a:not(.b .c)')...

我错过了什么?提前致谢

最佳答案

您需要使用 multiple selector:not-selector

$('.a:not(.b, .c)')...

关于jQuery 不是 : selector with OR,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25526085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com