<input type="checkbox" name="clientIds" value="" onclick="javascript:onclickClient(this);checkSelected();">
当checkbox有一个没有选中,全选按钮应该取消选中状态
function checkSelected(){ if ($("input[name='clientIds']").length == $("input[name='clientIds']:checked").length) { $('#selectAll').attr('checked', true); } else { $('#selectAll').attr('checked', false); } }