function randomString(len=32) {  
  let chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678';  
  let maxPos = chars.length;  
  let pwd = '';  
  for (i = 0; i < len; i++) {  
        pwd += chars.charAt(Math.floor(Math.random() * maxPos));  
  }  
    return pwd;  
}

DisplayNone
90 声望17 粉丝