我目前正在使用此代码从表中的列计算总数:
function calculateTotals() {
//these will hold the totals
var hours = 0;
//reference the rows you want to add
//this will not include the header row
var rows = $("#deliverables tr:not(:first-child, :last-child)");
rows.children("td:nth-child(2)").each(function() {
hours += parseInt($(this).html());
});
midHours = (hours).toFixed(2);
$(".total-hours").html(midHours);
};
但是,输出midHours
不会显示小数。例如,值为 12.5 的表格单元格 - 在.total-hours
单元格中输出为 12。