我使用的表格使用以下脚本来计算包含增值税的商品价格:
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(".", ",");
}
此功能工作正常,但我有一个问题。有时结果是这样的:
46,4
我想在屏幕上看到小数点后两位数,如下所示:
46,40
如何修复上述功能来解决它?
提前致谢。