Trường hợp của tôi cũng tương tự nhưng đây là dịp bạn có vài foobar
giây và bạn chỉ muốn đóng một - mỗi lần nhấp:
Tìm trường hợp cha mẹ
$(".foobar-close-button-class").on("click", function () {
$(this).parents('.foobar').fadeOut( 100 );
// 'this' - means that you finding some parent class from '.foobar-close-button-class'
// '.parents' -means that you finding parent class with name '.foobar'
});
Tìm trường hợp con
$(".foobar-close-button-class").on("click", function () {
$(this).child('.foobar-close-button-child-class').fadeOut( 100 );
// 'this' - means that you finding some child class from '.foobar-close-button-class'
// '.child' -means that you finding child class with name '.foobar-close-button-child-class'
});