我在一个网站上工作,它有一个价格输入字段。我需要将价格值格式化如下。
if a user enter "1000000" it should replace with "1,000,000" is it possible?
有什么帮助吗?
我在一个网站上工作,它有一个价格输入字段。我需要将价格值格式化如下。
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;
}
您可以执行以下操作:
function numberWithCommas(n) {
var parts=n.toString().split(".");
return parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",") + (parts[1] ? "." + parts[1] : "");
}
演示:http: //jsfiddle.net/e9AeK/
对Taiki的代码稍作修改。因为如果用户输入1000000它将产生1,000,000。但如果用户使用Backspace键删除“0”,它将不起作用。
function addPriceFormat()
{
var numb='';
nStr = document.getElementById('txt').value;
my = nStr.split(',');
var Len = my.length;
for (var i=0; i<Len;i++){numb = numb+my[i];}
x = numb.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');
}
formated = x1 + x2;
document.getElementById('txt').value = formated;
}