1
2
3
$('#테이블아이디').on("click""button#버튼아이디", function() {
        $(this).closest("tr").remove()
    });    
cs