<SCRIPT LANGUAGE="JavaScript">
<!--
function formatFloat(src, pos)
{
return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);
}
alert(formatFloat("1212.2323", 2));
//-->
</SCRIPT>
还有如下几种方法:
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;
}
本文介绍了JavaScript中实现数值四舍五入的多种方法,包括使用Math.round、toFixed等内置函数,以及自定义函数to2bits。文章详细解释了每种方法的工作原理和应用场景。
1万+

被折叠的 条评论
为什么被折叠?



