//查询类型复选框
$(".l-title").find("input[type='checkbox']").bind("click",function () {
console.log($(this))
if($(this).is(":checked")){
console.log("if")
$(this).parent().parent().nextAll().find("input[type='checkbox']").attr("checked",true)
}else{
console.log("else")
$(this).parent().parent().nextAll().find("input[type='checkbox']").attr("checked",false)
}
})