JAVASRIPT,四舍五入函数。

  1. <script language="javascript">   
  2. /*    
  3. *    ForDight(Dight,How):数值格式化函数,Dight要    
  4. *    格式化的  数字,How要保留的小数位数。    
  5. */     
  6. function  ForDight(Dight,How)     
  7. {     
  8.    Dight  =  Math.round  (Dight*Math.pow(10,How))/Math.pow(10,How);     
  9.    return  Dight;     
  10. }     
  11. alert(ForDight(12345.67890,2));     
  12. </script>  

直接使用
Number(12345.67890).toFixed(2);
就OK了...

你可能感兴趣的:(JavaScript)