gpt4 book ai didi

javascript - 在 radio 上更改背景取消选择

转载 作者:行者123 更新时间:2023-11-30 13:39:28 25 4
gpt4 key购买 nike

这只是对我的 last question 的补充.取消选择单选按钮后,我需要将背景颜色恢复为原始状态。所以我们想出的解决方案是:

$(document).ready(function(){
$('input:radio').change(function(){
$(this).closest('div').toggleClass('highlight');
});
});

现在我需要在取消选择单选按钮时删除突出显示类 - 有什么想法吗?

最佳答案

试试这个,使用 name 属性对你的 radio 进行分组,下面的 js 应该可以工作

Demo

 $('input:radio').change(function(){
$('div.highlight').removeClass('highlight');
$(this).closest('div').addClass('highlight');
});

关于javascript - 在 radio 上更改背景取消选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3078781/

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