function ForDight(Dight,How){

var Dight = Math.round (Dight*Math.pow(,How))/Math.pow(,How);

return Dight;

}
//ForDight(Dight,How):数值格式化函数;
//Dight:要格式化的 数字;
//How::要保留的小数位数。
05-07 15:19