div id="wrap">
<input type="radio" name="payMethod" value="1" />支付宝
<input type="radio" name="payMethod" value="2" />财务通
</div>
获取一组单选按钮对象:var obj_payPlatform = $('#wrap input[name="payMethod"]');
获取被选中按钮的值 :var val_payPlatform = $('#wrap input[name="payMethod"]:checked ')val();
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为选中值
<div id="wrap">
<input type="radio" name="payMethod" value="1" />支付宝
<input type="radio" name="payMethod" value="2" />财务通
</div>
获取一组单选按钮对象:var obj_payPlatform = $('#wrap input[name="payMethod"]');
获取被选中按钮的值 :var val_payPlatform = $('#wrap input[name="payMethod"]:checked ')val();
以上就是关于如何使用jQUery获取选中radio对应的值全部的内容,包括:如何使用jQUery获取选中radio对应的值、jquery怎么获取radio、jquery怎样获取选中radio的value值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)