เคสของฉันคล้ายกัน แต่นี่เป็นโอกาสที่คุณจะมีจำนวนน้อยfoobar
และคุณต้องการปิดเพียงอันเดียว - ต่อหนึ่งคลิก:
ค้นหากรณีหลัก
$(".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'
});
ค้นหากรณีเด็ก
$(".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'
});