gpt4 book ai didi

javascript - jQuery 删除多个 Id 上的相同类

转载 作者:行者123 更新时间:2023-11-30 07:04:18 27 4
gpt4 key购买 nike

我尝试删除多个 id 上的同一个类

代码如下:

var test = ['#step-1','#step-2','#step-3'];

$(test).removeClass('active-step');

这行不通,我的问题是..问题是什么,或者有更好的方法吗?

最佳答案

尝试将该数组构造为 multiple selector ,

var test = ['#step-1','#step-2','#step-3'];
$(test.join()).removeClass('active-step');

根据 documentation , .join() 将使用逗号(,) 合并数组元素(如果没有提供分隔符)。所以在我们的例子中,这个签名在制作多重选择器时很有用。

separator : Optional. Specifies a string to separate each element of the array. The separator is converted to a string if necessary. If omitted, the array elements are separated with a comma. If separator is an empty string, all elements are joined without any characters in between them.

关于javascript - jQuery 删除多个 Id 上的相同类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36197238/

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