如何在javascript中将价格转换为有效的价格格式?

时间:2013-10-08 09:23:38

标签: javascript

我有以下HTML。

<input type="text" id="Price">

当用户在此输入字段中输入价格金额时,应自动将其转换为有效的价格格式。

假设用户输入9200000,则应自动转换为9,200,000。

任何人都可以解释如何在javascript中完成它?

应该在这个字段的keyDown,keypress或keyup事件中完成。

由于

3 个答案:

答案 0 :(得分:1)

你可以尝试这个,我使用了reference

中的功能
 //Attach event
var el = document.getElementById("Price");
el.onkeydown = function(evt) {
    evt = evt || window.event;
    this.value = addCommas(stripNonNumeric(this.value));
};

// This function removes non-numeric characters
function stripNonNumeric( str )
{
  str += '';
  var rgx = /^\d|\.|-$/;
  var out = '';
  for( var i = 0; i < str.length; i++ )
  {
    if( rgx.test( str.charAt(i) ) ){
      if( !( ( str.charAt(i) == '.' && out.indexOf( '.' ) != -1 ) ||
             ( str.charAt(i) == '-' && out.length != 0 ) ) ){
        out += str.charAt(i);
      }
    }
  }
  return out;
}

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

Working Demo

答案 1 :(得分:1)

这是How can I format numbers as money in JavaScript?

Number.prototype.formatMoney = function(c, d, t){
var n = this, 
    c = isNaN(c = Math.abs(c)) ? 2 : c, 
    d = d == undefined ? "." : d, 
    t = t == undefined ? "," : t, 
    s = n < 0 ? "-" : "", 
    i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "", 
    j = (j = i.length) > 3 ? j % 3 : 0;
   return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : "");
 };
alert((123456789.12345).formatMoney(2, '.', ','));

答案 2 :(得分:0)

在输入上添加一个事件监听器并编写一个函数,将逗号插入到输入值中,当你得到keyDown事件时,监听器会调用该输入值。