我正在使用以下代码来计算公司和附加增值税的价格:

$('#totalexvat').text(totalprice);
var vat = totalprice / 100 * 17.5;
vat = roundNumber(vat,2);
$('#totalincvat').text(totalprice-vat);


有时候我得到的是.3或.9,而不是我希望的.30或.90,因为这是金钱,有办法吗?

最佳答案

您可能要看一下:http://code.google.com/p/jquery-numberformatter/,因为您已经在使用jQuery。

09-17 11:05