我正在为表单使用函数calculateTotal()。在此函数中有一个变量,用于存储其他两个函数返回值的总和。根据表格中用户的输入,总和可以包含几个小数点。即76.6666666666。我想知道在显示该金额之前是否可以四舍五入吗?我尝试过Math.round(theWholeThing),不起作用。
我不知道如何对数字进行四舍五入,因为它可以随着用户输入表单而改变。
与parseint相同。
function calculateTotal()
{
var theWholeThing = areaTimesType() + getSetUp();
var divobj = document.getElementById('totalPrice');
divobj.style.display='block';
divobj.innerHTML = "Total Price For grow space $"+theWholeThing + "\u00A0 \u00A0per month";
}
最佳答案
尝试toFixed
(76.6666666666).toFixed(); => 77
(76.6666666666).toFixed(1); => 76.7
您的代码将如下所示
function calculateTotal()
{
var theWholeThing = areaTimesType() + getSetUp();
var divobj = document.getElementById('totalPrice');
divobj.style.display='block';
divobj.innerHTML = "Total Price For grow space $"+(theWholeThing).toFixed(2) + "\u00A0 \u00A0per month";
}
关于javascript - 如何舍入存储在变量中的两个函数返回的总和?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22135927/