Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery 计算并且几乎所有东西都正常工作,但我需要将总数显示为 99.90,而不是 99.9(例如)。
因此.toFixed(),由于某种原因,它应该是不工作的!我找不到可以解决这个问题的面具。有人有其他想法吗?
.toFixed()
您可以使用 toFixed
var num = 99.9; num.toFixed(2);
而不是这一行:
$(".sumit").sum("keyup", "#totalSum");
采用:
$('.sumit').keyup(function(){ var totalsum = $('.sumit').sum(); $('#totalSum').val(Number(totalsum).toFixed(2)); });
希望有帮助