复选框全选
$("#checkAll").click(function() {
$('input[name="child"]').prop("checked",this.checked);
// 把父级的checked的属性传给子集
});
var $child = $("input[name='child']");
$child.click(function(){
$("#checkAll").prop("checked",$child.length == $("input[name='child']:checked").length ? true : false);
//判断子集复选框lenght的长度是否=子集以选中复选框的长度 是为true 不是为falsefalse
});