gpt4 book ai didi

javascript - 单击时在类别之间切换

转载 作者:行者123 更新时间:2023-11-28 19:47:06 24 4
gpt4 key购买 nike

如何在每次点击时添加和删除类(class)?

原始代码

HTML:

<div class="box"></div>

CSS:

.box{
width: 100px;
height: 100px;
background: blue;
}

我想添加:

.rounded {
border-radius: 10px;
}

我知道我必须使用框 div 上的单击功能,但我不知道如何添加类并删除它。

答案:

使用切换类

$(".box").click(function(){
$(this).toggleClass("rounded");
});

最佳答案

其他解决方案只是在类之间切换。如果您想修改现有的值并从中添加/删除值,请使用以下命令:

$('.box').css('border-radius','50px');

并删除:

$('.box').css('border-radius', '');

<强> Working example .

关于javascript - 单击时在类别之间切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24097861/

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