如何在JavaScript中将数字格式化为美元货币字符串?
要将数字格式化为当前美元字符串,请使用数字格式化程序,这是国际化API的一部分。
示例
您可以尝试运行以下代码以将数字格式化为美元货币字符串
<!DOCTYPE html>
<html>
<body>
<p>
Formatting 150 as US dollars (US$):
</p>
<script>
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
minimumFractionDigits: 2,
});
//为150$
document.write(formatter.format(150));
</script>
</body>
</html>