欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JavaScript 随机一串字符串

程序员文章站 2022-03-03 17:06:30
...


/**
* 产生随机字符串
* @param {Object} length 返回字符串的长度,默认32
* @author huxiao [email protected]
*/
function randomChar(length) {
length = length || 32;
var source = "abcdefghzklmnopqrstuvwxyz";
var random = "";
for(var i = 0;i < length; i++) {
random += source.charAt(Math.ceil(Math.random()*100000000)%source.length);
}
return random;
}