JavaScript产生1-n之间的随机数,可以任意指定n的大小,js自身的随机数只能产生0-1之间的浮点数,下面的代码通过转换实现1-n之间的随机数生成
//random number from 1 to N var random = Math.floor(Math.random() * N + 1); //random number from 1 to 10 //http://www.75271.com var random = Math.floor(Math.random() * 10 + 1); //random number from 1 to 100 var random = Math.floor(Math.random() * 100 + 1);