标签:
function random(min,max){ return Math.floor(min+Math.random()*(max-min)); }
例如,生成0-9的随机数(包括0和9) random(0,9)。
[小工具][JS]范围内随机数
原文地址:http://www.cnblogs.com/jt2001/p/151024jsRandomRange.html