Tổng đài tư vấn: 033 688 8648
Hotline: 039 511 6390
Chú ý khi sử dụng parent và parents trong jquery
Nếu dùng parent thì chỉ lấy thành phần cha phía ngoài gần nhất
ví dụ
$('.checkbox_wrapper').on('click', function () {
$(this).parent().parent().find('.checkbox_childrent').prop('checked', $(this).prop('checked'));
});
Nếu dùng parents thì truyền vào class hoặc id hoặc thẻ html để tìm ra phần tử có thuộc tính truyền vào ở gần nhất
ví dụ
$('.checkall').on('click', function () {
$(this).parents('.col-md-12').find('.checkbox_childrent').prop('checked', $(this).prop('checked'));
$(this).parents('.col-md-12').find('.checkbox_wrapper').prop('checked', $(this).prop('checked'));
});