JS random() 方法
Posted 李元芳芳芳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS random() 方法相关的知识,希望对你有一定的参考价值。
random方法可返回介于 0(包含)~1(不包含)之间的一个随机数
Math.random()
实例1:
取得介于1到10之间的一个随机数
Math.floor((Math.random()*10)+1);
实例2:
取得介于1到100之间的一个随机数
Math.floor((Math.random()*100)+1);
实例3:
以下函数返回min(包含)~ max(不包含)之间的数字:
function getRndInteger(min,max)
return Math.floor(Math.random() * (max-min))+min;
实例4:
以下函数返回min(包含)~ max(包含)之间的数字:
function getRndInteger(min,max)
return Math.floor(Math.random() * (max-min+1))+min;
以上是关于JS random() 方法的主要内容,如果未能解决你的问题,请参考以下文章