我有一个ListView,在ListView中我放置了html复选框(datarow和header),如果我点击header复选框,它必须检查所有datarow复选框
答案 0 :(得分:3)
这是一个jQuery示例:
$("#HeaderCheckbox").click(function() {
// get the state of the header checkbox (checked or unchecked)
var state = this.checked;
// apply it to the other checkboxes
$("input:checkbox").each(function() {
this.checked = state;
});
});
使用纯JavaScript,技术是相同的:获取标题复选框的状态并将其应用于其他人。