我使用以下方法计算:
Math.round(parseInt(optionPrice * 100, 10) * eurRate) / 100;
在一个实例中返回:
68.4
如何确保始终返回号码:
68.40
答案 0 :(得分:4)
使用javascripts .toFixed()
方法。
在你的情况下,它将是toFixed(2)
。
括号中的数字是小数点后的位数。
Eg:(Math.round(parseInt(optionPrice * 100, 10) * eurRate) / 100).toFixed(2);