当前位置: 代码迷 >> JavaScript >> js小结 数字_四舍五入
  详细解决方案

js小结 数字_四舍五入

热度:357   发布时间:2012-08-01 17:53:41.0
js总结 数字_四舍五入
//数字 指定位数后 四舍五入
function RoundNumber(num, pos)
{
    return Math.round(num * Math.pow(10, pos))/Math.pow(10, pos);
}
  相关解决方案