摘要: function PrefixInteger(num, n) { return (Array(n).join(0) + num).slice(-n); } 然后在js里引用, num 为传入的数字 n输出的长度 3 000 例如: number = PrefixInteger(1, 3); 输出的结 阅读全文
posted @ 2020-06-19 16:03 经不起丶似水流年 阅读(2822) 评论(0) 推荐(0) 编辑