0

私は次のhtmlを持っています。

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

ユーザーがこの入力フィールドに価格を入力すると、有効な価格形式に自動的に変換されます。

ユーザーが 9200000 を入力すると、自動的に 9,200,000 に変換されます。

それで、javascriptでそれを行う方法を誰かが説明できますか?

このフィールドの keyDown、keypress、または keyup イベントで実行する必要があります。

ありがとう

4

3 に答える 3

1

あなたはこれを試すことができます、私は参照で関数を使用しました

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

ワーキングデモ

于 2013-10-08T09:30:00.777 に答える
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, '.', ','));
于 2013-10-08T09:36:48.407 に答える
0

入力にイベント リスナーを追加し、keyDown イベントを取得したときにリスナーが呼び出す入力値にコンマを挿入する関数を記述します。

于 2013-10-08T09:27:44.567 に答える