jQueryループで選択したラジオボタンradioの値を取得
1996 ワード
1.<input type="radio" name="testradio" value="jquery radio " />jquery radio
2.<input type="radio" name="testradio" value="jquery checkbox " />jquery checkbox
3.<input type="radio" name="testradio" value="jquery select " />jquery select
radio , :
1.$('input[name="testradio"]:checked').val();2、
1.$('input:radio:checked').val();3、
1.$('input[@name="testradio"][checked]');4、
1.$('input[name="testradio"]').filter(':checked'); , name testradio radio ,
1.$('input[name="testradio"]').each(function(){2.alert(this.value);3.}); radio , radio ,
1.$('input[name="testradio"]:eq(1)').val()
, :
<table class="table table-bordered">
<thead>
<tr>
<th style="vertical-align:middle" class="text-center" rowspan="2"> </th>
</tr>
</thead>
<tbody>
#foreach($item in [1,2,3,4,5])
<tr>
<td>
<input type="radio" name="audit$!{item}" value="1" checked>
<input type="radio" name="audit$!{item}" value="0">
</td>
</tr>
</table>
, radio, , :
$('input:radio:checked').each(function(){
//var checkValue = $(this).val();
console.log($(this).val()); //
});