js独自の範囲で乱数が発生します.
294 ワード
function selectFrom(iFirstValue, iLastValue){
var iChoices = iLastValue - iFirstValue + 1; //
return Math.floor(Math.random()*iChoices+iFirstValue);
}
var iNum = selectFrom(2,99); // 2~99
alert(iNum);