当前第2页 返回上一页
1 2 3 4 5 6 7 8 | <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>
|
PHP代码如下:
1 2 3 4 5 6 7 8 9 10 | string Platfrom = string. Empty ;
foreach (ListItem li in this.ddlplatform.Items)
{
if (li.Selected)
{
Platfrom += li.Text + "," ;
}
}
Platfrom = Platfrom.TrimEnd( ',' );
|
返回前面的内容
相关阅读 >>
bootstrap-multiselect 多选实例代码
CheckBoxList多选样式jquery、c#获取选择项
更多相关阅读请进入《CheckBoxList》频道 >>
清华大学出版社
作者:[美]克里斯琴·内格尔(Christian Nagel)著。出版时间:2019年3月。
转载请注明出处:木庄网络博客 » CheckBoxList多选样式jquery、C#获取选择项