// toString 会把随机生成的小数转化为36进制的字符 // 获得随机字符后是0.xxxxx这样的,再用substr截掉前面的0.字符 let code = Math.random().toString(36).substr(2,4) console.log(code)