首页 >web前端 >js教程 >如何在 JavaScript 中将数字精确格式化为小数点后两位?

如何在 JavaScript 中将数字精确格式化为小数点后两位?

Barbara Streisand
Barbara Streisand原创
2024-12-31 06:24:14745浏览

How Can I Precisely Format Numbers to Two Decimal Places in JavaScript?

在 JavaScript 中精确格式化数字

要在 JavaScript 中显示精确到两位小数的数字,可以利用 toFixed() 方法。方法如下:

var price = 10.8;
var formattedPrice = price.toFixed(2); // "10.80"

请注意,toFixed() 返回一个字符串,而不是数字。

toFixed() 的限制

而 toFixed () 可以正确舍入大多数数字,但它并非在所有情况下都一致舍入。例如:

2.005.toFixed(2) === "2.00"

用于精确格式化的Intl.NumberFormat

对于精确数字格式化,建议使用 Intl.NumberFormat 构造函数。它在现代浏览器(包括 IE11)和 Node.js 中得到完全支持:

const formatter = new Intl.NumberFormat('en-US', {
  minimumFractionDigits: 2,
  maximumFractionDigits: 2,
});

console.log(formatter.format(2.005)); // "2.01"
console.log(formatter.format(1.345)); // "1.35"

与 toFixed() 相比,Intl.NumberFormat 在数字格式方面提供了更多控制和一致性。

以上是如何在 JavaScript 中将数字精确格式化为小数点后两位?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn