多组 RadioButtonList 获取值
Posted jimson
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多组 RadioButtonList 获取值相关的知识,希望对你有一定的参考价值。
<div class="row">
<table>
<thead><tr><th>操作</th></tr></thead>
<tbody>
<tr>
<td>
<input type="radio" name="3" value="Update" />覆盖
<input type="radio" name="3" value="Insert" />更新
<input type="radio" name="3" value="Cancel" />取消
</td>
</tr>
<tr>
<td>
<input type="radio" name="2" value="Update" />覆盖
<input type="radio" name="2" value="Insert" />更新
<input type="radio" name="2" value="Cancel" />取消
</td>
</tr>
<tr>
<td>
<input type="radio" name="5" value="Update" />覆盖
<input type="radio" name="5" value="Insert" />更新
<input type="radio" name="5" value="Cancel" />取消
</td>
</tr>
</tbody>
</table>
<input type="button" id="btnTry" value="更新" />
</div>
<script type="text/javascript" src="~/Scripts/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
jQuery("#btnTry").click(function () {
var updateIds = ‘‘;
$(‘input:radio[value="Update"]:checked‘).each(function (i, val) {
updateIds += val.name+‘;‘;
});
var insertIds = ‘‘;
$(‘input:radio[value="Insert"]:checked‘).each(function (i, val) {
insertIds += val.name + ‘;‘;
});
alert(‘Update:‘+updateIds);
alert(‘Insert:‘+insertIds);
});
</script>
以上是关于多组 RadioButtonList 获取值的主要内容,如果未能解决你的问题,请参考以下文章
[PDF] - 获取 RadioButtonList 控件值的方法
Jquery 操作RadioButtonList,DropDownList
DropDownList的使用,RadioButtonList的使用
查看 RadioButtonList 是不是具有选定值的最佳方法是啥?