需要生成随机数,JS怎么写,有几种写法,请大神指教
最常用的就是 Math.random() 了
可以配合其他几个 Math 函数一起使用,比如:
1、Math.round(Math.random()) - 随机0/1
2、Math.floor(Math.random() * 10) - 随机 0~9
3、Math.floor(Math.random() * 10) % 3 - 随机 0~2
4、Math.round(Math.random() * (Max - Min) + Min) - 随机 Max ~Min 区间
Math.random()
用 chancejs
var rnd = new Date(); rnd = rnd.getTime();这样子应该也算是随机数吧,而且不会重复;