jQuery 获取选中的单选框的值

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/UN3009/article/details/82791536
 <div id="wrap">
 <input id="male" type="radio" name="payMethod" value="1" /><label for="male">男</label>
 <input id="female" type="radio" name="payMethod" value="2" /><label for="female">女</label>
</div>

注:label 标签的作用是:点击男/女让单选框选中。

获取一组单选按钮对象:var obj_payPlatform = $(’#wrap input[name=“payMethod”]’);
获取被选中按钮的值 :var val_payPlatform = $(’#wrap input[name=“payMethod”]:checked ').val();

实例1:
使用jquery获取radio的值,最重要的是掌握jquery选择器的使用,在一个表单中我们通常是要获取被选中的那个radio项的值,所以要加checked来筛选,比如有以下的一些radio项:
1.jquery获取radio的值
2.jquery获取checkbox的值
3.jquery获取select的值

要想获取某个radio的值有以下的几种方法,直接给出代码:
1、
$(‘input[name=“testradio”]:checked’).val();
$(‘input:radio_:checked’).val(); radio_等于radio
$(‘input[name=“testradio”][checked]’);
$(‘input[name=“testradio”]’).filter(’:checked’);
差不多挺全的了,如果我们要遍历name为testradio的所有radio呢,代码如下
$(‘input[name=“testradio”]’).each(function(){alert(this.value);});

如果要取具体某个radio的值,比如第二个radio的值,这样写
$(‘input[name=“testradio”]:eq(1)’).val()

猜你喜欢

转载自blog.csdn.net/UN3009/article/details/82791536