javascript怎么生成随机数

2024-11-22 08:05:13
推荐回答(1个)
回答1:

Math.random(); //该方法产生一个0到1之间的浮点数。
Math.floor(Math.random()*10+1); //1-10
Math.floor(Math.random()*24);//0-23