摘要: //四舍五入 function round2(number, fractionDigits) { with (Math) { return round(number * pow(10, fractionDigits)) / pow(10, fractionDigits); } } // 空替换0 f 阅读全文
posted @ 2022-09-08 15:53 尧荣华 阅读(345) 评论(0) 推荐(0)