码迷,mamicode.com
首页 > Web开发 > 详细

[转载]js 获取ASP RadioButtonList 选中的值

时间:2016-11-05 15:06:09      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:++   bsp   sel   value   type   lis   ant   doc   for   

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 选中的值

标签:++   bsp   sel   value   type   lis   ant   doc   for   

原文地址:http://www.cnblogs.com/AaronBear/p/6032966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!