$("#checkAll").on("click", function () {
if($(this).prop('checked')){
$("input[name='checkList']").prop("checked",$(this).prop("checked"));
}else{
$("input[name='checkList").prop("checked",false);
}
});
$("#checkAll").on("click", function () {
if($(this).prop('checked')){
$("input[name='checkList']").prop("checked",$(this).prop("checked"));
}else{
$("input[name='checkList").prop("checked",false);
}
});