function round(max,min){
return Math.round(Math.random()*(max-min)+min);
}
随机数封装(自用)
最新推荐文章于 2023-01-16 19:57:45 发布
function round(max,min){
return Math.round(Math.random()*(max-min)+min);
}