第一种:
for( var i=0; i < 5; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
第二种:不需要输入字符集合
alert(randomstring(5))
第三种:支持自定义字符长度和特征字符集合
Call with default charset [a-zA-Z0-9] or send in your own:
var randomValue = randomString(5,'PICKCHARSFROMTHISSET');
演示截图
原文链接:https://www.f2er.com/js/46939.html