jgrid 选择器 C#控件
一、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();