var changeTwoDecimal_f= function (floatvar){🎜>var changeTwoDecimal_f= function (floatvar){ a (floatvar);
if (isNaN(f_x)){
return '0.00';
🎜> var s_x = f_x.toString();
var pos_decimal = s_x.indexOf('.');
if (pos_decimal if (pos_decimal }
while (s_x.length >}
js提供的四捨五入函數:
複製程式碼
程式碼如下:
js 四捨五入函數裡面的參數就是保留小數的位數。
document.write("兩位小數點:" a.toFixed(2) "
四位小數點" a.toFixed (4));