天天看点

js的Math.random() 函数

JavaScript Math.random() 函数

Math.random() – 返回0和1之间的伪随机数 可能为0,但总是小于1,[0,1)

1

document.write(Math.random());

返回随机数

1

document.write(Math.random()(20-10+1)+10);

返回10-20的随机数

1

document.write(Math.random()(n+1-m)+m);

返回指定范围的随机数(m-n之间)的公式

继续阅读