返回介于0(包含)~1(包含)之间的一个随机数
Math.random()
返回介于1(包含)~10(包含)之间的一个随机数
Math.floor((Math.random()*10)+1);
返回介于min(包含)~max(包含)之间的一个随机数
function getRndInteger(min, max) { return Math.floor(Math.random() * (max - min) ) + min;}
Math.random()
Math.floor((Math.random()*10)+1);
function getRndInteger(min, max) { return Math.floor(Math.random() * (max - min) ) + min;}
非特殊说明,本博所有文章均为博主原创。
如若转载,请注明出处:http://phpfv.com/index/view/47.html