欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

javascript生成隨機大小寫字母的方法

 更新時間:2014年02月20日 16:36:01   作者:  
這篇文章主要介紹了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;
}

相關文章

最新評論