确保数字在小数点后有2个数字

时间:2015-06-30 12:59:35

标签: jquery

我使用以下方法计算:

Math.round(parseInt(optionPrice * 100, 10) * eurRate) / 100;

在一个实例中返回:

68.4

如何确保始终返回号码:

68.40

1 个答案:

答案 0 :(得分:4)

使用javascripts .toFixed()方法。

在你的情况下,它将是toFixed(2)。 括号中的数字是小数点后的位数。

Eg:(Math.round(parseInt(optionPrice * 100, 10) * eurRate) / 100).toFixed(2);