math.random()//不需要传参数,获取的是0~1之间的随机数
math.random()*10 //将0~1的随机数处理为0~10
console.log(Math.random()*10)
math.floor()//需要传参,参数是需要<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script type="text/javascript"> //随机数 // math.random()//不需要传参数,获取的是0~1之间的随机数 // math.random()*10 //将0~1的随机数处理为0~10 // console.log(Math.random()*10) // math.floor()//需要传参,参数是需要下取整数的值 var num=Math.floor(Math.random()*10) console.log(num) //随机数公式:为了获取指定数字之间的随机数(为了方便获取以非零数开头的随机数) //Math.floor(Math.random()*(max-min)+min) var num1=Math.floor(Math.random()*(10000-1000)+1000) console.log(num1) //for循环拼接四位数验证码 var str='' for(var i=0;i<4;i++){ str+=Math.floor(Math.random()*10) } console.log(str) </script> </body> </html>
下取整数的值
JS:随机数 或 获取验证码
最新推荐文章于 2024-05-05 16:25:30 发布
这篇博客介绍了JavaScript中生成随机数的方法,包括math.random()用于获取0~1之间的随机数,通过乘法和math.floor()进行下取整以获取指定范围内的随机整数。示例代码还展示了如何生成四位数的随机验证码,以及使用for循环拼接随机数字形成验证码的过程。
摘要由CSDN通过智能技术生成