始终显示至少两位小数

时间:2013-12-09 15:11:34

标签: javascript decimal

我想格式化一个数字,以便它总是至少有两个小数位。

样品:

1
2.1
123.456
234.45

输出:

1.00
2.10
123.456
234.45

4 个答案:

答案 0 :(得分:13)

你可以固定为2或当前位数;

 var result = num.toFixed(Math.max(2, (num.toString().split('.')[1] || []).length));

答案 1 :(得分:2)

如何使用Intl

Intl.NumberFormat(navigator.language, {
  minimumFractionDigits: 2,
  maximumFractionDigits: 10,
}).format(num)

答案 2 :(得分:1)

尝试此解决方案(正常工作),

var a= 1,
    b= 2.1,
    c = 123.456,
    d = 234.45;

console.log(a.toFixed(4).replace(/0{0,2}$/, ""));
console.log(b.toFixed(4).replace(/0{0,2}$/, ""));
console.log(c.toFixed(4).replace(/0{0,2}$/, ""));
console.log(d.toFixed(4).replace(/0{0,2}$/, ""));

如果您有更多小数位,您可以轻松更新数字。

答案 3 :(得分:0)

试试这个:

var num = 1.2;
function decimalPlaces(num) {
  var match = (''+num).match(/(?:\.(\d+))?(?:[eE]([+-]?\d+))?$/);
  if (!match) { return 0; }
  return Math.max(
       0,
       // Number of digits right of decimal point.
       (match[1] ? match[1].length : 0)
       // Adjust for scientific notation.
       - (match[2] ? +match[2] : 0));
}
if(decimalPlaces(num) < 2){
   num = num.toFixed(2);
}
alert(num);

这是jsfiddle