js取两个整数之间的随机数

正文开始

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

for(var i=0; i< 1000; i++) {
    var s = selectfrom(1,100);
    console.log(s);
}

正文结束

js 正则替换返回值做回调函数 jq获取dom宽高的bug