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

时间:2012-10-16 10:29:44

标签: javascript regex numbers

  

可能重复:
  How can I format numbers as money in JavaScript?

我正在网站上工作,它有一个价格输入字段。我需要格式化价格值,如下所示。

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

任何帮助?

3 个答案:

答案 0 :(得分:2)

您需要这样的自定义功能:

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

答案 1 :(得分:1)

您可以执行以下操作:

function numberWithCommas(n) {
    var parts=n.toString().split(".");
    return parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",") + (parts[1] ? "." + parts[1] : "");
}

DEMO: http://jsfiddle.net/e9AeK/

答案 2 :(得分:1)

稍微修改 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;
}