JavaScript中的Math对象提供的方法,
比如
Math.floor()
向下取整,
Math.ceil()
向上取整,
Math.round()
四舍五入取整等。
例如,如果你想要将 num/pianhe
的结果取整后赋值给 #btboxnum
元素,你可以这样做:
(此处 num/pianhe 的结果是 double 带小数点显示)
$('#btboxnum').val(Math.floor(num/pianhe)); // 使用Math.floor()向下取整
或者
$('#btboxnum').val(Math.round(num/pianhe)); // 使用Math.round()四舍五入取整
这样就可以将 num/pianhe
的结果取整后,赋值给指定的元素了。