//四位数验证码
function getRadom() {
var n = '';
while (n.length < 4) {
var code = Math.floor(Math.random() * 74) + 48;
if (code >= 48 && code <= 57 || code >= 65 && code <= 90 || code >= 97 && code <= 122) {
n += String.fromCharCode(code);
}
}
return n;
}
这样可以随机生成一个四位数的验证码了