标签: javascript jquery math tofixed
以下是我目前使用的代码,我需要将最终结果舍入为2位小数。有人帮我弄清楚我做错了什么。
total = panjang*ht+hf; document.getElementById("ototal").innerHTML =eval(total(toFixed(2)));
答案 0 :(得分:2)
变量total是一个数字,而不是function。 您应该使用toFixed这样的功能
total
function
toFixed
total.toFixed(2)