Remove parent div by class name - jquery

前端 未结 5 1538
别那么骄傲
别那么骄傲 2021-01-14 20:58

I have a remove link that will remove the current comment on my page. It uses ajax to change the database and upon success, I want to remove the div the comment resides in.

5条回答
  •  心在旅途
    2021-01-14 21:57

    If you're trying to remove it on a click:

    $(".aComment a").on('click', function(){
        $(this).closest(".aComment").remove();
    });
    

    http://jsfiddle.net/gaQuu/

提交回复
热议问题