一、RadioButtonList

html代码:

<asp:RadioButtonList ID="rlPlan" runat="server" RepeatDirection="Horizontal" Width="200px">            
                <asp:ListItem Value="计划内">计划内</asp:ListItem>
                <asp:ListItem Value="计划外">计划外</asp:ListItem>
                <asp:ListItem Value="" Selected>不选</asp:ListItem>
                </asp:RadioButtonList>

选择值:

var checkedVal = $j("input[name='rlPlan']:checked").val();

 

相关文章:

  • 2021-09-06
  • 2022-12-23
  • 2021-10-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-09
  • 2022-01-15
  • 2021-11-27
  • 2022-01-13
  • 2022-12-23
相关资源
相似解决方案