Math产生m到n直接随机整数
function getNum(m,n){//产生m-n直接的随机整数 if(m>n){ var temp = m; m = n; n = temp; } return Math.floor(Math.random()*(n-m) + m);}
?