时间:2021-07-01 10:21:17 帮助过:13人阅读
如下所示:
喜欢<input type="radio" name="likea" id="" value="3" /> 一般<input type="radio" name="likea" id="" value="2" /> 不喜欢<input type="radio" name="likea" id="" value="1" />
利用jQuery获取radio选中值
$("input[name='likea']:checked").val()
去除所有radio选中状态
$('input:radio[name="likea"]').removeAttr('checked');
相关推荐:
jQuery实现 RadioButton做必选校验功能方法分享
在html怎样使用radio
input 属性radio中设置checked 不生效的问题
以上就是jQuery获取单选按钮radio选中值与去除所有radio选中状态实例分享的详细内容,更多请关注Gxl网其它相关文章!