全选
作者:chrispy
function checkedAll() {
//全选
var checkboxList = $('.checkboxList');
var allCheckbox = $('.all-checkbox');
allCheckbox.click(function () {
if (allCheckbox.is(':checked')) {
checkboxList.attr('checked', 'checked')
} else {
checkboxList.removeAttr('checked', 'checked')
}
});
checkboxList.click(function () {
var caseNum = '';
checkboxList.each(function () {
if ($(this).is(':checked')) {
caseNum += $(this).attr('value') + ',';
}
})
caseNum = caseNum.substring(0, caseNum.length - 1);
caseNum = caseNum.split(",");
if (checkboxList.length == caseNum.length) {
allCheckbox.attr('checked', 'checked');
} else {
allCheckbox.removeAttr('checked');
}
})
}