不高兴

导航

js四舍五入保留N位小数

  1. //四舍五入保留e位小数(e:表示小数位数)  
  2. function round(v,e){  
  3.     var t=1;  
  4.     for(;e>0;t*=10,e--);  
  5.     for(;e<0;t/=10,e++);  
  6.     return Math.round(v*t)/t;  
  7. }  

posted on 2012-06-25 11:19  小RR  阅读(137)  评论(0编辑  收藏  举报