js生成随机数(指定范围)的实例代码
1、随机生成4位数的随机数
<scriptlanguage="javascript">
/**
*随机生成4位的随机数
*http://www.yulu.jb51.net
*/
document.write(parseInt(10*Math.random()));//输出0~10之间的随机整数
document.write(Math.floor(Math.random()*10+1));//输出1~10之间的随机整数
functionRndNum(n){
varrnd="";
for(vari=0;i<n;i++)
rnd+=Math.floor(Math.random()*10);
returnrnd;
}
document.write(RndNum(4));//输出指定位数的随机数的随机整数
</script>
2、随机生成指定的数据范围的随机数
1)、从1开始至任意值
parseInt(Math.random()*上限+1);
2)、从任意值开始至任意值
<script>
parseInt(Math.random()*(上限-下限+1)+下限);
functionfRandomBy(under,over){
switch(arguments.length){
case1:returnparseInt(Math.random()*under+1);
case2:returnparseInt(Math.random()*(over-under+1)+under);
default:return0;
}
}
document.write(fRandomBy(1,100));//输出指定范围内的随机数的随机整数
</script>
//给既定文本框按规则付不同的值[引申]
<script>
window.onload=function(){
varo=document.getElementsByTagName('input');
o[0].value=fRandomBy(1,10);
o[1].value=fRandomBy(11,20);
o[2].value=fRandomBy(1,100);
o[3].value=fRandomBy(51,100);
}
</script>
1-10:<inputtype="text"/><br/>
11-20:<inputtype="text"/><br/>
1-100:<inputtype="text"/><br/>
51-100:<inputtype="text"/><br/>
3、扩展例子:
<html>
<head>
<title>Math-生成随机数的例子-www.nhooo.com</title>
</head>
<body>
<scriptlanguage="javascript"type="text/javascript">
total=0
for(i=1;i<=5000;i++){
num=Math.random();
total+=num
}
average=total/5000;
average=Math.round(average*1000)/1000;
document.write("<h1>平均数:"+average+"</h1>")
</script>
</body>
</html>
以上这篇js生成随机数(指定范围)的实例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。