CheckBoxList多選樣式j(luò)query、C#獲取選擇項(xiàng)
更新時(shí)間:2013年09月06日 11:52:48 作者:
使用jquery、C#獲取CheckBoxList選擇項(xiàng),實(shí)現(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="移動(dòng)觸屏">移動(dòng)觸屏</asp:ListItem>
<asp:ListItem Value="PC">PC</asp:ListItem>
<asp:ListItem Value="微信">微信</asp:ListItem>
<asp:ListItem Value="微博">微博</asp:ListItem>
</asp:CheckBoxList>
復(fù)制代碼 代碼如下:
//使用平臺(tái)
string Platfrom = string.Empty;
foreach (ListItem li in this.ddlplatform.Items)
{
if (li.Selected)
{
Platfrom += li.Text + ",";
}
}
Platfrom = Platfrom.TrimEnd(',');
相關(guān)文章
jQuery手動(dòng)點(diǎn)擊實(shí)現(xiàn)圖片輪播特效
這篇文章主要為大家詳細(xì)介紹了jQuery手動(dòng)點(diǎn)擊實(shí)現(xiàn)圖片輪播特效,手動(dòng)點(diǎn)擊數(shù)字卡片實(shí)現(xiàn)圖片輪播,對(duì)圖片輪播感興趣的小伙伴們可以參考一下2015-12-12
基于jquery實(shí)現(xiàn)在線選座訂座之影院篇
通過電商購買過電影票的朋友都很熟悉此功能,那么在線選座訂座使用程序怎么實(shí)現(xiàn)的呢,接下來,給大家分享基于jquery實(shí)現(xiàn)在線選座訂座之影院篇,感興趣的朋友快來圍觀2015-08-08
JavaScript的jQuery庫插件的簡要開發(fā)指南
這篇文章主要介紹了JavaScript的jQuery庫插件的簡要開發(fā)指南,分為基于選擇器的插件和不基于選擇器的插件兩種情況,需要的朋友可以參考下
2015-08-08
jqeury eval將字符串轉(zhuǎn)換json的方法
這個(gè)方法是一個(gè)將DataTable轉(zhuǎn)換成字符串的方法 。
2011-01-01
jQuery實(shí)現(xiàn)漸變下拉菜單的簡單方法
這篇文章主要介紹了jQuery實(shí)現(xiàn)漸變下拉菜單的簡單方法,涉及jQuery鏈?zhǔn)讲僮骷癱ss樣式的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
2015-03-03 
