后面的复选框状态与第一个td里面的一样
$(function(){
$('.check-all').on('click', function(){
$(this).parent('td').next('td').find(':checkbox').prop('checked', $(this).is(':checked'));
});
$('.check-child').on('click', function(){
$(this).parent('dt').next('dd').find(':checkbox').prop('checked', $(this).is(':checked'));
});
})