ajax删除时如何用remove删除节点

2025-04-13 04:24:28
推荐回答(1个)
回答(1):

$('.delbtn').on('click', function () {
    $(this).parents('tr').remove();
})