這篇文章主要介紹了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; }