Generate random number, between 2 numbers?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Generating random numbers in Javascript in a specific range?
假设我想生成一个从50到100的随机数。
我知道有:
1 | Math.random() |
但我只能找到从1到"x"的方法
从更多的是
1 2 3 4 5 | // Returns a random integer between min and max // Using Math.round() will give you a non-uniform distribution! function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } |
我相信这将也的工作: </P >
1 2 3 | function randomInt(min,range) { return Math.floor((Math.random()*(range+1))+min) } |
在你的案例将是50分钟和范围将是50 </P >