Posted in Javascript onFebruary 20, 2014
/** * 返回一个随机的小写字母 */ 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; }
javascript生成随机大小写字母的方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@