次のクラスがあります。このクラスは、td.lineitemtotalセル内にあるものを選択し、それをgetTotal関数で使用してセルの合計を取得します。ただし、関数がtr.line_item_rowにある行をstyle = "display:none;"で使用することは望ましくありません。属性。
$(document).ready(function() {
var line = $('.item');
// so the line totals are calculated on page load
getLineItemTotals(line);
var line_totals = $('.lineitemtotal');
getTotal(line_totals); // So the total is calculated on page load.
});
// get invoce grand total
function getTotal(lines) {
var total = 0;
$.each(lines, function(){
total += parseFloat($(this).html());
});
$('#total-price').html('$' + total.toFixed(2));
}