赞
踩
由于每一个单选框均为一个单独的input,无法用id直接获取。可通过将一组radio配置为同一个class下,统一管理。
通过class获取input框的选中值:
$("input[name='addusersex']:checked").val()
radio的常用方法:
1.获取选中值,三种方法都可以:
$('input:radio:checked').val();
$("input[type='radio']:checked").val();
$("input[name='rd']:checked").val();
2.设置第一个Radio为选中值:
$('input:radio:first').attr('checked', 'checked');
$('input:radio:first').attr('checked', 'true');
注:attr("checked",'checked')= attr("checked", 'true')= attr("checked", true)
3.设置最后一个Radio为选中值:
$('input:radio:last').attr('checked', 'checked');
或:$('input:radio:last').attr('checked', 'true');
4.根据索引值设置任意一个radio为选中值:
$('input:radio').eq(索引值).attr('checked', 'true');索引值=0,1,2....
或:$('input:radio').slice(1,2).attr('checked', 'true');
5.根据value值设置Radio为选中值:
$("input:radio[value='女']").attr('checked','true');
$("input[value='女']").attr('checked','true');
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。