在Repeater中实现CheckBox 的全选及反选

在Repeater中实现CheckBox 的全选及反选(后台代码实现)

protected void CheckBox1_CheckedChanged(object sender, EventArgs e)

{

            foreach (RepeaterItem item in this.Repeater1.Items)

            {

                CheckBox checkBox = item.FindControl("CheckBox2") as CheckBox;

                checkBox.Checked = (sender as CheckBox).Checked;

            }

}

在Repeater中实现CheckBox 的全选及反选(前台页面JS脚步实现)



 

页面中Html代码

全选

阅读原文

你可能感兴趣的:(javascript)