在十进制数末尾添加 0 以确保它始终是小数点后 2 位?

发布于 2024-08-29 08:16:12 字数 258 浏览 6 评论 0原文

我使用以下代码来计算 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玉环 2024-09-05 08:16:12

您可能需要查看以下内容: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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文