实例,返回介于 0(包含) ~ 1(不包含) 之间的一个随机数:
Math.random();
定义和用法
random() 方法可返回介于 0(包含) ~ 1(不包含) 之间的一个随机数。
浏览器支持
所有主要浏览器都支持 random() 方法
语法
Math.random()
返回值
类型 | 描述 |
---|---|
Number | 0.0 ~ 1.0(不包含) 之间的一个伪随机数。 |
技术细节
JavaScript 版本: | 1.0 |
---|
更多实例
在本例中,我们将取得介于 1 到 10 之间的一个随机数:
Math.floor((Math.random()*10)+1);
在本例中,我们将取得介于 1 到 100 之间的一个随机数:
Math.floor((Math.random()*100)+1);
以下函数返回 min(包含)~ max(不包含)之间的数字:
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min) ) + min;
}
以下函数返回 min(包含)~ max(包含)之间的数字:
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1) ) + min;
}