num传入的数字,n需要的字符长度
function PrefixInteger(num, n) { return (Array(n).join(0) + num).slice(-n); }
例如:传入6,需要的字符长度为3,调用方法后字符串结果为:006