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 중국어 홈페이지(www.php.cn)를 주목해주세요!