var _detail = ‘’ ;//绑定你查询出的数据源
if (_detail.rows.length > 0) {
$.each(_detail.rows, function (i) {
_divContent += "<li style='padding-left: 20px;width:30px'><input type='checkbox' name={1} {3} class={1} id={2} /></li><li style='width:30px'><span style='padding-top: 1px; float: left;'><label for={1}>{1}</label></span></li>".format(this.cell[3], this.cell[2], this.cell[0], this.cell[3] == '1' ? 'checked=\'checked\'' : '');
});
}
今天我刚刚也用到了
是根据查询按钮在下边显示出所有开发区的checkbox吗?试试下边的写法。
CheckBox cb = new CheckBox();
cb.Text = "hello";
Point point = new Point();
point.X = 12;
point.Y = 44;
cb.Location = point;
cb.Parent = this;
其中的cb对象可以根据你的逻辑自动新增,point的X、Y则需要你自己根据自己的页面布局自行修改。