健康篮球

文章
3
资源
0
加入时间
2年10月21天

JS 生成随机数

1.使用内置函数方法:   Math.random(); //该方法产生一个0到1之间的浮点数。   延伸:   Math.floor(Math.random()*10+1); //生成1-10的随机数   Math.floor(Math.random()*10);//生成0-9的随机数   函数方法:   function rand ( n )