日期:2014-05-16 浏览次数:20342 次
//数字 指定位数后 四舍五入 function RoundNumber(num, pos) { return Math.round(num * Math.pow(10, pos))/Math.pow(10, pos); }