JS — 获取4个不重复的随机验证码

var strCode='zxcvbnmasdfghjklopiuytrewqAWEDRFTGYHUJIK';
var str='';
for(var i=0;i<4;i++){
    var rand=Math.round(Math.random()*61);
    if(str.indexOf(strCode.charAt(rand))==-1){
        str+=strCode.charAt(rand);
    }else{
        i--;
    }
}
console.log(str);

 原文链接:http://www.qdfuns.com/notes/42231/cfc6d7c792d485de06587c532587a08d.html

posted @ 2017-04-05 18:33  webnote  阅读(470)  评论(0编辑  收藏  举报