javascript Math.random

Math.random() 返回介于0和1之间的一个随机数, 0.0712383823728837....


如果想获得一个整数范围随机值

值 = Math.floor( Math.random() * 数目 + 第一个可能的值);


function selectFrom(lower,upper){
   var count = upper - lower +1;
   return Math.floor(Math.random() * count + lower);
}





posted @ 2012-09-18 14:15  lein.wang  Views(101)  Comments(0Edit  收藏  举报