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>

相关文章:

  • 2021-12-31
  • 2022-12-23
  • 2021-08-27
  • 2022-12-23
  • 2021-06-07
  • 2021-11-22
  • 2021-12-05
  • 2021-11-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-30
  • 2021-10-21
  • 2021-10-26
相关资源
相似解决方案