欢迎访问服务器技术网-www.fuwuqijishu.com

JavaScript random() 方法

JavaScript fuwuqijishu 2年前 (2022-09-04) 42次浏览 0个评论 扫描二维码
文章目录[隐藏]

JavaScript random() 方法

JavaScript Math 对象

实例

返回介于 0(包含) ~ 1(不包含) 之间的一个随机数:

Math.random();

输出结果:

document.write(Math.random());


定义和用法

random() 方法可返回介于 0(包含) ~ 1(不包含) 之间的一个随机数。


浏览器支持

所有主要浏览器都支持 random() 方法


语法

Math.random()

返回值

类型 描述
Number 0.0 ~ 1.0(不包含) 之间的一个伪随机数。

技术细节

JavaScript 版本: 1.0


更多实例

实例

在本例中,我们将取得介于 1 到 10 之间的一个随机数:

Math.floor((Math.random()*10)+1);

输出结果:

document.write(Math.floor((Math.random()*10)+1));

实例

在本例中,我们将取得介于 1 到 100 之间的一个随机数:

Math.floor((Math.random()*100)+1);

输出结果:

document.write(Math.floor((Math.random()*100)+1));

实例

以下函数返回 min(包含)~ max(不包含)之间的数字:

function getRndInteger(min, max) {
return Math.floor(Math.random() * (maxmin) ) + min;
}

实例

以下函数返回 min(包含)~ max(包含)之间的数字:

function getRndInteger(min, max) {
return Math.floor(Math.random() * (maxmin + 1) ) + min;
}


JavaScript Math 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2300.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900