CheckBoxList两列并排编译为表格显示具体实现
时间:2021-01-19 12:05:16|栏目:.NET代码|点击: 次
复制代码 代码如下:
<asp:CheckBoxList ID="DDLGroups" runat="server" RepeatLayout="Table" RepeatColumns="2" RepeatDirection="Horizontal" style="border-collapse:collapse; line-height:18px;margin-left:2px;">
</asp:CheckBoxList>
复制代码 代码如下:
<style type="text/css">
#DDLGroups{border-collapse:collapse; line-height:18px}
#DDLGroups td{width:300px; border:1px solid #F0F8FF;padding-left:5px}
</style>
获取所选值:
复制代码 代码如下:
//获取联系人组
$("#DDLGroups tbody tr td input:checkbox:checked").each(function () {
alert($(this).parent().find("label").html())
});
上一篇:C#设计模式之Builder生成器模式解决带老婆配置电脑问题实例
栏 目:.NET代码
下一篇:C#动态创建button的方法
本文标题:CheckBoxList两列并排编译为表格显示具体实现
本文地址:http://www.codeinn.net/misctech/47459.html