标签:
function ForDight(Dight,How){ var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight; } //ForDight(Dight,How):数值格式化函数; //Dight:要格式化的 数字; //How::要保留的小数位数。
js 数值格式化函数
原文地址:http://www.cnblogs.com/itdaocaoren/p/5646761.html