gpt4 book ai didi

html - 在 html 中格式化数字 : adding space between millions (like : 9 999 999)

转载 作者:行者123 更新时间:2023-12-04 02:01:18 25 4
gpt4 key购买 nike

我需要在 HTML 中显示数百万之间有空格的数字,是否有任何简单的格式可以做到这一点?

我想显示 999 999 999,而不是 999999999

最佳答案

正如我在评论中所述。您将无法使用 HTML 以您想要的方式格式化数字。您将不得不使用 JavaScript。

Here is how you would do it using plain JavaScript .

供引用:

function formatNumber(n) {
if (n < 0) { throw 'must be non-negative: ' + n; }
if (n === 0) { return '0'; }

var output = [];

for (; n >= 1000; n = Math.floor(n/1000)) {
output.unshift(String(n % 1000).padStart(3, '0'));
}
output.unshift(n);

return output.join(' ');
}

关于html - 在 html 中格式化数字 : adding space between millions (like : 9 999 999),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31074616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com