js javascrip 截取小數點後幾位

在開發過程中經常遇到要調整小數的格式,如保留小數點後兩位等等。方法也頗爲常見,備忘如下。

 第一種,利用math.round 

   var original=28.453
1) //round "original" to two decimals
var result=Math.round(original*100)/100;  //returns 28.45
2) // round "original" to 1 decimal
var result=Math.round(original*10)/10;  //returns 28.5

 

第二種,js1.5以上可以利用toFixed(x) ,可指定數字截取小數點後 x位

3) //round "original" to two decimals
var result=original.toFixed(2); //returns 28.45

4) // round "original" to 1 decimal
var result=original.toFixed(1); //returns 28.5

 

以上兩種方法最通用,但卻無法滿足某些特殊要求,比如保留小數點後兩位,如果不滿兩位,不滿兩位則補零。此時就有了第三種方法。

 

第三種,轉換函數,這段代碼來源於國外一個論壇。

 

 

[javascript] view plaincopy
  1. function roundNumber(number,decimals) {  
  2.     var newString;// The new rounded number  
  3.     decimals = Number(decimals);  
  4.     if (decimals < 1) {  
  5.         newString = (Math.round(number)).toString();  
  6.     } else {  
  7.         var numString = number.toString();  
  8.         if (numString.lastIndexOf(".") == -1) {// If there is no decimal point  
  9.             numString += ".";// give it one at the end  
  10.         }  
  11.         var cutoff = numString.lastIndexOf(".") + decimals;// The point at which to truncate the number  
  12.         var d1 = Number(numString.substring(cutoff,cutoff+1));// The value of the last decimal place that we'll end up with  
  13.         var d2 = Number(numString.substring(cutoff+1,cutoff+2));// The next decimal, after the last one we want  
  14.         if (d2 >= 5) {// Do we need to round up at all? If not, the string will just be truncated  
  15.             if (d1 == 9 && cutoff > 0) {// If the last digit is 9, find a new cutoff point  
  16.                 while (cutoff > 0 && (d1 == 9 || isNaN(d1))) {  
  17.                     if (d1 != ".") {  
  18.                         cutoff -= 1;  
  19.                         d1 = Number(numString.substring(cutoff,cutoff+1));  
  20.                     } else {  
  21.                         cutoff -= 1;  
  22.                     }  
  23.                 }  
  24.             }  
  25.             d1 += 1;  
  26.         }   
  27.         if (d1 == 10) {  
  28.             numString = numString.substring(0, numString.lastIndexOf("."));  
  29.             var roundedNum = Number(numString) + 1;  
  30.             newString = roundedNum.toString() + '.';  
  31.         } else {  
  32.             newString = numString.substring(0,cutoff) + d1.toString();  
  33.         }  
  34.     }  
  35.     if (newString.lastIndexOf(".") == -1) {// Do this again, to the new string  
  36.         newString += ".";  
  37.     }  
  38.     var decs = (newString.substring(newString.lastIndexOf(".")+1)).length;  
  39.     for(var i=0;i<decimals-decs;i++) newString += "0";  
  40.     //var newNumber = Number(newString);// make it a number if you like  
  41.     document.roundform.roundedfield.value = newString; // Output the result to the form field (change for your purposes)  
  42. }  
 

 

5) //round "original" to two decimals
var result=original.toFixed(2); //returns 28.45

6) // round "original" to 1 decimal
var result=original.toFixed(1); //returns 28.5

 

 

var original=28.4

var result=original.toFixed(2); //returns 28.40

發佈了71 篇原創文章 · 獲贊 7 · 訪問量 57萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章