gpt4 book ai didi

javascript - 如何使用javascript格式化输入框中的价格值?

转载 作者:行者123 更新时间:2023-11-28 16:11:13 27 4
gpt4 key购买 nike

Possible Duplicate:
How can I format numbers as money in JavaScript?

我正在开发一个网站,它有一个价格输入字段。我需要将价格值格式化为如下所示。

if a user enter "1000000" it should replace with "1,000,000" is it possible?

有什么帮助吗?

最佳答案

您需要这样的自定义函数:

function addCommas(nStr)
{
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}

关于javascript - 如何使用javascript格式化输入框中的价格值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12912671/

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