使用jquery、C#取得CheckBoxList選擇項,實作如下,有興趣的朋友可以參考下
代碼如下:
.checkboxlist label { margin-right: 20px; }
程式碼如下:
var label; $("#ddlplatform input:checkbox:checked").each(function () { label += $(this).next().html(); });
程式碼如下:
<asp:CheckBoxList ID="ddlplatform" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow" CssClass="checkboxlist"> <asp:ListItem Value="APP">APP</asp:ListItem> <asp:ListItem Value="移动触屏">移动触屏</asp:ListItem> <asp:ListItem Value="PC">PC</asp:ListItem> <asp:ListItem Value="微信">微信</asp:ListItem> <asp:ListItem Value="微博">微博</asp:ListItem> </asp:CheckBoxList>
>
//使用平台 string Platfrom = string.Empty; foreach (ListItem li in this.ddlplatform.Items) { if (li.Selected) { Platfrom += li.Text + ","; } } Platfrom = Platfrom.TrimEnd(',');
以上就是CheckBoxList多重選擇樣式jquery、C#取得選擇項目範例介紹的內容,更多相關內容請關注PHP中文網(m.sbmmt.com)!