JavaScript对随机数的介绍比较少,所以今天分享一下有关随机数的一些事儿。希望能对大家有点小帮助。
主要的公式就是parseInt(Math.random()*(上限-下限+1)+下限); Math.random()是为大家生成0到1的随机小数。parseInt()方法可以解析一个字符串,并返回一个整数。下面的例子是针对公式封装的函数。
JavaScript代码:
window.onload=function(){
var o=document.getElementsByTagName('input');
o[0].value=fRandomBy(10);
o[1].value=fRandomBy(11, 20);
o[2].value=fRandomBy(1, 100);
o[3].value=fRandomBy(51, 100);
function fRandomBy(under, over){
switch(arguments.length){
case 1: return parseInt(Math.random()*under+1);
case 2: return parseInt(Math.random()*(over-under+1) + under);
default: return 0;
}
}
}
HTML代码:
1-10: <input type="text" /><br />
11-20: <input type="text" /><br />
1-100: <input type="text" /><br />
51-100: <input type="text" /><br />
效果预览:
以上就是为大家分享的有关随机数的那点事儿,希望能为大家有所帮助。