单击单选按钮时 jQuery 切换标签类
我的单选按钮周围有一个标签,其中背景应该在 :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');
});
});
但它不起作用...请帮助
I have a label surrounding my radio button where the background is supposed to change on :hover and :focus
<label for="radio1" class="radio-blur">
<input name="job" id="radio1" value="1" type="radio"> Graphic Design</label>
I want to change the class from .radio-blur to .radio-focus
I have
$(document).ready(function(){
$('input:radio').click(function() {
$(this).parent('label').toggleClass('.radio-focus');
});
});
But it doesn't work... please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除类
JSFiddle中的点
Remove the dot in the class
JSFiddle