如何使用 jQuery 取消选中禁用的单选按钮?
这是一些检查单选按钮是否被禁用的代码。如果无线电当前被禁用,我该如何对此进行修改以使无线电不受检查?是的,我仍然想删除父 CSS 类。谢谢。
$('input:disabled', true).parent().removeClass("style1");
为什么这不起作用?
$('input:disabled', true).attr('checked', false).parent().removeClass("style1");
Here is some code that checks if a radio button is disabled. How do I reform this to make the radio unchecked if it is currently disabled? And yes I still want to remove the parent CSS class. Thanks.
$('input:disabled', true).parent().removeClass("style1");
Why won't this work?
$('input:disabled', true).attr('checked', false).parent().removeClass("style1");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样做:
更多信息:
You could do:
More Info:
您可以使用
:radio
仅获取单选按钮。并且使用附加的:disabled
您将只能禁用无线电按钮。所以试试这个:You can use
:radio
to only get radio buttons. And with the additional:disabled
you will only get disabled radio buttons. So try this: