好记性不如烂笔头。

js随机数 (1)

var random = Math.floor(Math.random() * N + 1); 
  
//产生1到10之间的随机数 
var random = Math.floor(Math.random() * 10 + 1); 
  
//产生1到100之间的随机数 
var random = Math.floor(Math.random() * 100 + 1);