在十进制数末尾添加 0 以确保它始终是小数点后 2 位?
我使用以下代码来计算 inc 和 ext VAT 价格:
$('#totalexvat').text(totalprice);
var vat = totalprice / 100 * 17.5;
vat = roundNumber(vat,2);
$('#totalincvat').text(totalprice-vat);
有时我得到 0.3 或 0.9,而不是我想要的 0.30 或 0.90,因为它是钱,有办法做到这一点吗?
I am using the following code to work out an inc and ext VAT price:
$('#totalexvat').text(totalprice);
var vat = totalprice / 100 * 17.5;
vat = roundNumber(vat,2);
$('#totalincvat').text(totalprice-vat);
Sometimes I get .3 or .9 instead of what I would like to be .30 or .90 because it's money, is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要查看以下内容:http://code.google.com/p/jquery -numberformatter/ 因为你已经在使用 jQuery 了。
You may want to look at this: http://code.google.com/p/jquery-numberformatter/ since you're using jQuery already.
尝试 toFixed
try toFixed