function ForDight(Dight,How){ var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight; } //ForDight(Dight,How):数值格式化函数; //Dight:要格式化的 数字; //How::要保留的小数位数。
时间: 2024-10-02 23:27:39
function ForDight(Dight,How){ var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight; } //ForDight(Dight,How):数值格式化函数; //Dight:要格式化的 数字; //How::要保留的小数位数。