js里任意两个数之间的随机数函数

/**
 * JS获取n至m随机整数
 * 琼台博客
 */
function rd(n,m){
    var c = m-n+1;  
    return Math.floor(Math.random() * c + n);
}



function selectfrom (lowValue,highValue){
	var choice=highValue-lowValue+1;
	return Math.floor(Math.random()*choice+lowValue);
}

你可能感兴趣的:(前端设计)