js获取某个范围内的随机数

 function myRandom (begin,end){
   return Math.round(Math.random()*(end-begin))+begin;
}

你可能感兴趣的:(js获取某个范围内的随机数)