码迷,mamicode.com
首页 > Web开发 > 详细

js随机密码产生函数

时间:2020-04-05 20:23:10      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:全选   random   height   var   strpos   max   text   col   长度   

[‘abcdefghijklmnopqrstuvwxyz‘,‘ABCDEFGHIJKLMNOPQRSTUVWXYZ‘,‘1234567890‘,‘~!@#$%^&*()_+";",./?<>‘]; 
  var rand = function(min, max){
    return Math.floor(Math.max(min, Math.random() * (max+1)));
}
  var len = rand(8, 16); // 长度为8-16
  var pw = ‘‘;
  for(i=0; i<len; ++i) {
  var strpos = rand(0, 3);
  pw += text[strpos].charAt(rand(0, text[strpos].length));
  } return pw;
}

测试代码: [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]

 

 

js随机密码产生函数

标签:全选   random   height   var   strpos   max   text   col   长度   

原文地址:https://www.cnblogs.com/aivnfjgj/p/12638741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!