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

JS简单生成随机数(随机密码)的方法

程序员文章站 2023-08-26 16:46:13
本文实例讲述了js简单生成随机数(随机密码)的方法。分享给大家供大家参考,具体如下: 1. math.random()生成一个0~1的随机数 0<=math.ran...

本文实例讲述了js简单生成随机数(随机密码)的方法。分享给大家供大家参考,具体如下:

1. math.random()生成一个0~1的随机数 0<=math.random()<1
2. math.random()*100 则生成一个0~100之间的随机数
3. math.random()*100 + 100 则生成一个100~200之间的随机数
4. 所以math.random()*m 则生成一个0~m的随机数

实例代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en"
"http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>js随机数</title>
</head>
<body>
<script language="javascript">
function randompassword(size)
{
  var seed = new array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','p','q','r','s','t','u','v','w','x','y','z',
  'a','b','c','d','e','f','g','h','i','j','k','m','n','p','q','r','s','t','u','v','w','x','y','z',
  '2','3','4','5','6','7','8','9'
  );//数组
  seedlength = seed.length;//数组长度
  var createpassword = '';
  for (i=0;i<size;i++) {
    j = math.floor(math.random()*seedlength);
    createpassword += seed[j];
  }
  return createpassword;
}
document.write(randompassword(6));
</script>
</body>
</html>

运行结果:vrhpwe

ps:这里再为大家提供两款相关在线工具供大家参考使用:

在线随机数字/字符串生成工具:

高强度密码生成器:
http://tools.jb51.net/password/createstrongpassword

更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript数学运算用法总结》、《javascript数据结构与算法技巧总结》、《javascript数组操作技巧总结》、《javascript排序算法总结》、《javascript遍历算法与技巧总结》、《javascript查找算法技巧总结》及《javascript错误与调试技巧总结

希望本文所述对大家javascript程序设计有所帮助。