js补位函数 2018-04-02 本文已影响48人 四季变幻 //补位 num:需要补位的数字 n:补位长度 function pad(num, n) { return (Array(n).join(0) + num).slice(-n); }