日期:2014-05-16  浏览次数:20342 次

js总结 数字_四舍五入
//数字 指定位数后 四舍五入
function RoundNumber(num, pos)
{
    return Math.round(num * Math.pow(10, pos))/Math.pow(10, pos);
}