码迷,mamicode.com
首页 > 其他好文 > 详细

4月6日--求指定范围的随机数

时间:2017-04-06 15:43:53      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:随机   div   随机数   title   max   n+1   javascrip   整数   pre   

  转换随机数为指定范围的整数
  1、Math.floor(Math.random()*(MAX-MIN+1))+MIN

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Math的常用方法3</title>
    <script type="text/javascript">
        var n=Math.random();//0-1
        console.log(n);
        //转换随机数为指定范围的整数
        //Math.floor(Math.random()*(MAX-MIN+1))+MIN
        //[0,100] 
        // n=Math.floor(Math.random()*101);
        //[4,57]
        n=Math.floor(Math.random()*54)+4;
        console.log(n);
    </script>
</head>
<body>
    
</body>
</html>

 

4月6日--求指定范围的随机数

标签:随机   div   随机数   title   max   n+1   javascrip   整数   pre   

原文地址:http://www.cnblogs.com/xinxinxinxin/p/6673521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!