获取radio 选中的值

1.获取选中值,三种方法都可以:

 

$('input:radio:checked').val();

 

$("input[type='radio']:checked").val();

 

$("input[name='id']: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');

猜你喜欢

转载自blog.csdn.net/oYuHuaChen/article/details/94737212