js格式化数字为两位小数
来源:PHP程序员站 作者:PHP程序员站 发布时间:2011-06-07
javascript格式化二位小数代码. function formatFloat(src, pos) { return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos); } alert(formatFloat(11111.2222, 2));
javascript格式化二位小数代码.
function formatFloat(src, pos)
{
return Math.round(src*Math.pow(10, pos))/Math.pow(10, pos);
}
alert(formatFloat("11111.2222", 2));
延伸阅读:intval函数不能格式化超过9位的数字