在JavaScript 或 jQuery环境中生成随机数字

在JavaScript 或 jQuery环境中, 一个非常好用的随机数生成函数

function getRandom(n){
	return Math.floor(Math.random()*n+1);
}

getRandom(10); //6
getRandom(10); //5