我正在使用以下代码来计算增值税和增值税价格:
$('#totalexvat').text(totalprice);
var vat = totalprice / 100 * 17.5;
vat = roundNumber(vat,2);
$('#totalincvat').text(totalprice-vat);
有时我会得到.3或.9而不是我想要的.30或.90,因为这是钱,有没有办法做到这一点?
答案 0 :(得分:3)
你可能想看看这个:http://code.google.com/p/jquery-numberformatter/因为你已经在使用jQuery了。
答案 1 :(得分:2)
尝试toFixed