gpt4 book ai didi

jQuery:选择给定类的所有元素,特定 Id 除外

转载 作者:IT王子 更新时间:2023-10-29 03:24:22 24 4
gpt4 key购买 nike

这可能非常简单。

我想选择给定类 thisClass 的所有元素,id 为 thisId 的元素除外。

即等同于(其中 -/减号表示删除):

$(".thisClass"-"#thisId").doAction();

最佳答案

使用 :not selector .

$(".thisclass:not(#thisid)").doAction();

如果您有多个 ID 或选择器,只需使用逗号分隔符,此外:

(".thisclass:not(#thisid,#thatid)").doAction();

关于jQuery:选择给定类的所有元素,特定 Id 除外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2551217/

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