按钮在此TR上,我可以使用以下代码轻松删除它。如何删除NEXT TR
E.g。
<TR></TR> --> Code works with removing this
<TR></TR> --> Remove the next TR THis one
var $this = $(this),
orderTr = $this.parents('tr');
orderTr.remove();
答案 0 :(得分:1)
您可以使用
$(this).closest("tr").next().remove();
或
$(this).parents("tr").next().remove();