数学圆函数

use*_*922 2 javascript

我正在使用一个使用以下脚本来计算物品价格的表格,包括增值税:

function calculateTotaleIVA() {
          var tot = document.getElementById('totale').value;
          document.getElementById('totale_prodotto').value = Math.round(tot*121)/100;
          totale_prodotto.value = document.getElementById('totale_prodotto').value.replace(".", ",");
          totale.value = document.getElementById('totale').value.replace(".", ",");
          }
Run Code Online (Sandbox Code Playgroud)

这个功能很好,但我有一个问题.有时候结果是这样的:

46,4

我希望在点十进制后的屏幕两位数看到这样的:

46,40

如何修复上述功能来解决它​​?

提前致谢.

Den*_*ret 7

使用toFixed

(Math.round(tot*121)/100).toFixed(2)
Run Code Online (Sandbox Code Playgroud)