在 JavaScript 中将数字格式化为货币字符串
要将 JavaScript 中的价格格式化为货币字符串,例如“$ 2,500.00”,您可以可以利用国际化提供的 Intl.NumberFormat 函数API.
实现:
const formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', });
const formattedPrice = formatter.format(amount);
定制选项:
您可以使用其他参数进一步自定义格式,例如:
通过利用 Intl.NumberFormat,您可以以区域设置感知的方式轻松将数字格式化为货币字符串。
以上是如何在 JavaScript 中将数字格式化为货币字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!