9

我正在尝试动态调整输入的数值以包含千位分隔符

这是我的代码:

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;
}


<input type="number"  onkeyup="this.value=addCommas(this.value);" />

但是,当我在 4 之后输入数字时,该字段被清除。

有什么想法我哪里出错了吗?如果有一个 jQuery 解决方案,我已经在我的网站上使用它。

4

5 回答 5

13

试试这个正则表达式:

function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
于 2012-11-29T08:46:48.203 回答
8

要添加千位分隔符,您可以像这样对调用进行字符串拆分、反转和替换:

function addThousandsSeparator(input) {
    var output = input
    if (parseFloat(input)) {
        input = new String(input); // so you can perform string operations
        var parts = input.split("."); // remove the decimal part
        parts[0] = parts[0].split("").reverse().join("").replace(/(\d{3})(?!$)/g, "$1,").split("").reverse().join("");
        output = parts.join(".");
    }

    return output;
}

addThousandsSeparator("1234567890"); // returns 1,234,567,890
addThousandsSeparator("12345678.90"); // returns 12,345,678.90
于 2013-08-02T16:37:00.933 回答
6

尝试

<input type="text" onkeyup="this.value=addCommas(this.value);" />

反而。由于该函数使用的是文本而不是数字。

于 2012-11-29T08:56:19.873 回答
2

在格式化之前的每种情况下,首先尝试删除现有的逗号,例如:Removing commas in 'live' input fields in jquery

例子:

function addThousandsSeparator(x) {
    //remove commas
    retVal = x ? parseFloat(x.replace(/,/g, '')) : 0;

    //apply formatting
    return retVal.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
于 2015-01-13T15:11:16.120 回答
2

正如狄龙提到的,它必须是一个字符串(或者你可以使用 typeof(n) 和 stringify 如果不是)

function addCommas(n){
    var s=n.split('.')[1];
    (s) ? s="."+s : s="";
    n=n.split('.')[0]
    while(n.length>3){
        s=","+n.substr(n.length-3,3)+s;
        n=n.substr(0,n.length-3)
    }
    return n+s
}
于 2012-11-29T09:43:20.873 回答