這篇文章給出了javascript隨機生成大小寫字母代碼的代碼,可以用于驗證碼等等,希望可以幫助到有所需求的朋友
/**
* 返回一個隨機的小寫字母
*/
function getLowerCharacter(){
return getCharacter("lower");;
}
/**
* 返回一個隨機的大寫字母
*/
function getUpperCharacter(){
return getCharacter("upper");;
}
/**
* 返回一個字母
*/
function getCharacter(flag){
var character = "";
if(flag === "lower"){
character = String.fromCharCode(Math.floor( Math.random() * 26) + "a".charCodeAt(0));
}
if(flag === "upper"){
character = String.fromCharCode(Math.floor( Math.random() * 26) + "A".charCodeAt(0));
}
return character;
}
新聞熱點
疑難解答