VANHIEP.NET - Làm web giá rẻ - Thiết Kế Website - Thiết Kế Ứng Dụng Mobile
Chú ý khi sử dụng parent và parents trong jquery

Chú ý khi sử dụng parent và parents trong jquery

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'));

    });