1. 程式人生 > >JS 生成永不重複的隨機序列號

JS 生成永不重複的隨機序列號

 序列號由大小寫字母 + 數字組成,直接上程式碼:

function getRandomCode(length) {
   if (length > 0) {
      var data = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
      var nums = "";
      for (var i = 0; i < length; i++) {
         var r = parseInt(Math.random() * 61);
         nums += data[r];
      }
      return nums;
   } else {
      return false;
   }
}

var res = getRandomCode(32);
console.log(res);

想要生成幾個隨機的序列號傳入對應的數字即可!