复制代码 代码如下: <BR><!--<BR>function formatFloat(src, pos)<BR>{<BR> return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);<BR>} <P>alert(formatFloat("1212.2323", 2));<BR>//--><BR> 还有如下几种方法: 复制代码 代码如下: var test=88888.234; alert(test.toFixed(2)); // 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; }