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);
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);