$(".checkAll").click(function(){
var check = $(this).prop("checked");
//父元素check返回的是true或者false,如果父元素被选中,则所有子元素也被选中
$(".childCheck").prop("checked",check);
})