//n位随机码 var $codeChars = ['3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y']; function fnRandomCode(codeLength) { // 保存验证码的对象 var res = "", index = -1; for (var i = 0; i < codeLength; i++) { index = Math.ceil(Math.random() * ($codeChars.length - 1)); if (index>-1) { res += $codeChars[index]; } else { res += '6'; } } return res; }