toFixed() 方法指定小數位個數
toExponential() 方法 用科學計數法表示數,參數指定小數位個數
toPrecision() 方法自動判斷調用toFixed()或toExponential()方法,參數指定所有數的位數
復制代碼 代碼如下:
var num = 99;
alert(toFixed(2)); //99.00
alert(toExponential(1)); //9.0e+1
alert(toPrecision(1)); //9.0e+1
alert(toPrecision(2)); //99
alert(toPrecision(3)); //99.0