gpt4 book ai didi

单击单选按钮时 jQuery 切换标签类

转载 作者:行者123 更新时间:2023-12-01 06:30:04 26 4
gpt4 key购买 nike

我的单选按钮周围有一个标签,其中背景应该在 :hover 和 :focus 上更改

<label for="radio1" class="radio-blur">
<input name="job" id="radio1" value="1" type="radio"> Graphic Design</label>

我想将类从 .radio-blur 更改为 .radio-focus

我有

    $(document).ready(function(){
$('input:radio').click(function() {
$(this).parent('label').toggleClass('.radio-focus');
});
});

但它不起作用......请帮忙

最佳答案

删除类中的点

$(this).parent('label').toggleClass('radio-blur radio-focus');

JSFiddle

关于单击单选按钮时 jQuery 切换标签类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7312766/

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