DigitUtil2021-01-19 本文已影响0人 泠泉/// js 数字前面自动补零 function PrefixInteger(num, n) { return (Array(n).join(0) + num).slice(-n); }