function ForDight(Dight,How){ var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight; } //ForDight(Dight,How):数值格式化函数;//Dight:要格式化的 数字;//How::要保留的小数位数。
本文共 232 字,大约阅读时间需要 1 分钟。
function ForDight(Dight,How){ var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight; } //ForDight(Dight,How):数值格式化函数;//Dight:要格式化的 数字;//How::要保留的小数位数。
转载于:https://www.cnblogs.com/itdaocaoren/p/5646761.html