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();

猜你喜欢

转载自www.cnblogs.com/zhengwei-cq/p/9717110.html
今日推荐