gpt4 book ai didi

jquery - 删除以前动态添加的类

转载 作者:行者123 更新时间:2023-12-01 08:13:36 25 4
gpt4 key购买 nike

我使用此代码片段根据其 id 添加一个类:

   $('.block').click(function() {
$('#bg').addClass($(this).attr('id'));
});

但如果添加了最后添加的类,则需要删除最后添加的类,因为单击先前单击的按钮时会导致问题,因为当前(较高)类会覆盖较低的类,这如何实现?

JFiddle for better understanding

最佳答案

只需先使用removeClass清除div即可。

$('.block').click(function() {
$('#bg').removeClass().addClass($(this).attr('id'));
});​

<强> jsFiddle example

关于jquery - 删除以前动态添加的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12080880/

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