本文共 388 字,大约阅读时间需要 1 分钟。
1.使用js生成随机密码
function create_password(min_len=8,max_len=16){ let passwordArray=['abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ','1234567890','@-_#!']; let rand = function(min, max){ return Math.floor(Math.max(min, Math.random() * (max+1))); } let pwdlength= rand(min_len, max_len); let password = ''; for(i=0; i
转载于:https://blog.51cto.com/keefe/2154330