当前位置:主页 > 网页前端 > jquery >

jQuery获取单选按钮radio选中值与去除所有radio选中状态的方法

时间:2021-08-24 08:46:14 | 栏目:jquery | 点击:

如下所示:

喜欢<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');

您可能感兴趣的文章:

相关文章