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

 

posted @ 2018-09-28 10:13  爱生活,爱代码  阅读(173)  评论(0编辑  收藏  举报