我在此代码中添加了淡出+删除jquery table rows line totals and grand total,但UpdateTotals(this)
停止了工作。我们将非常感谢您的帮助。
非常感谢
$('body').delegate('.delete', 'click', function() {
//$(this).parents('tr').remove(); // UpdateTotals works fine
$(this).parents('tr').fadeOut('normal', function() { $(this).remove()}); //UpdateTotals won't work
UpdateTotals(this);
});