我有这个功能:
function doCalc() {
var total = 0;
$('tr').each(function() {
$(this).find('span.amount').html($('input:eq(0)', this).val() * $('input:eq(1)', this).val());
});
}
$(this).keyup(doCalc);
例如,如果我乘以 12 * 1.90 它总是显示 22.799999999999997 如何将其格式化为 22.80 ?提前致谢