欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

CheckBoxList多選樣式j(luò)query、C#獲取選擇項

 更新時間:2013年09月06日 11:52:48   作者:  
使用jquery、C#獲取CheckBoxList選擇項,實現(xiàn)如下,感興趣的朋友可以參考下
復(fù)制代碼 代碼如下:

.checkboxlist label
{
margin-right: 20px;
}

復(fù)制代碼 代碼如下:

var label;
$("#ddlplatform input:checkbox:checked").each(function () {
label += $(this).next().html();
});

復(fù)制代碼 代碼如下:

<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>

復(fù)制代碼 代碼如下:

//使用平臺
string Platfrom = string.Empty;
foreach (ListItem li in this.ddlplatform.Items)
{
if (li.Selected)
{
Platfrom += li.Text + ",";
}
}
Platfrom = Platfrom.TrimEnd(',');

相關(guān)文章

最新評論