js 获取ASP RadioButtonList 选中的值
Posted AaronBear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 获取ASP RadioButtonList 选中的值相关的知识,希望对你有一定的参考价值。
var planList=document.all (‘rblPlanType‘);
for(var i=1;i<planList.length;i++)
{
if(planList[i].checked)
{
var planType=planList[i].value;
}
}
<asp:RadioButtonList ID="rblPlanType" runat="server" RepeatDirection="Horizontal" >
<asp:ListItem Value ="周" Selected ="true" >周</asp:ListItem>
<asp:ListItem Value ="月" >月</asp:ListItem>
<asp:ListItem Value ="季">季</asp:ListItem>
<asp:ListItem Value ="年">年</asp:ListItem>
</asp:RadioButtonList></td>
以上是关于js 获取ASP RadioButtonList 选中的值的主要内容,如果未能解决你的问题,请参考以下文章
asp.net中radiobuttonlist使用控件,如何将多个选中的选项转化为数组并输出。
将样式应用于 ASP.NET RadioButtonList
使用 jQuery 从 asp:RadioButtonList 读取选定的值