複製程式碼 程式碼如下: ; !--<BR>function formatFloat(src, pos)<BR>{<BR> return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);<BR>}<BR>} <P>alert(formatFloat("1212.2323", 2));<BR>//--><BR> 還有下列幾種方法: 複製程式碼 程式碼如下: var test=88888.234 ); // Float資料四捨五入到2位小數; function to2bits(flt) { if(parseFloat(flt) == flt) return Math.round(flt * 100) / 100; // 到4位小數, return Math.round(flt * 10000) / 10000; else return 0; }