我在一个表单中有三个输入框,并使用其中两个来执行简单的计算,结果在第三个输入框中。然后将这些全部放入数据库中以供其他地方使用。这是我的计算代码。
document.insert_moves.elements.number1.value = ((document.insert_moves.elements.biomass1.value * 1000)/ document.insert_moves.elements.weight1.value);
我怎样才能使它四舍五入到最接近的整数?任何建议表示赞赏。