日期:2014-05-16 浏览次数:20374 次
//四舍五入保留e位小数(e:表示小数位数) function round(v,e){ var t=1; for(;e>0;t*=10,e--); for(;e<0;t/=10,e++); return Math.round(v*t)/t; }