jQuery函数用逗号和小数格式化数字

时间:2012-12-28 19:56:41

标签: javascript jquery regex

我正在使用以下函数将数字格式化为用户类型。它将每3个数字插入一个逗号。例如:45696.36变为45,696.36

但是,我遇到了问题。如果小数点后的数字超过3位数,则会开始向它们添加逗号。例如:1136.6696变为1,136.6,696

这是我的功能:

$.fn.digits = function(){
  return this.each(function() {
    $(this).val( $(this).val().replace(/[^0-9.-]/g, '') );
    $(this).val( $(this).val().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,") ); 
  }) 
}

如何解决此问题,以便在小数点后停止逗号?我正在使用jQuery 1.8。谢谢!

2 个答案:

答案 0 :(得分:44)

您可以通过将字符串拆分为“.”字符,然后仅在第一部分执行逗号转换来实现此目的:

function ReplaceNumberWithCommas(yourNumber) {
    //Seperates the components of the number
    var n= yourNumber.toString().split(".");
    //Comma-fies the first part
    n[0] = n[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",");
    //Combines the two sections
    return n.join(".");
}

ReplaceNumberWithCommas(1136.6696); //yields 1,136.6696

<强> Example

答案 1 :(得分:1)

我使用accounting.js lib:

accounting.format(1136.6696, 4) // 1,136.6696