1、隨機生成4位數的隨機數
<script language="javascript">/*** 隨機生成4位的隨機數* http://www.yulu.VeVB.COm*/document.write(parseInt(10*Math.random())); //輸出0~10之間的隨機整數document.write(Math.floor(Math.random()*10+1)); //輸出1~10之間的隨機整數function RndNum(n){ var rnd=""; for(var i=0;i<n;i++) rnd+=Math.floor(Math.random()*10); return rnd;}document.write(RndNum(4)); //輸出指定位數的隨機數的隨機整數</script>
2、隨機生成指定的數據范圍的隨機數
1)、從1開始 至 任意值
parseInt(Math.random()*上限+1);
2)、從任意值開始至任意值
<script>parseInt(Math.random()*(上限-下限+1)+下限); 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; } } document.write(fRandomBy(1,100)); //輸出指定范圍內的隨機數的隨機整數</script>//給既定文本框按規則付不同的值[引申]<script>window.onload=function(){ var o=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: <input type="text" /><br /> 11-20: <input type="text" /><br /> 1-100: <input type="text" /><br /> 51-100: <input type="text" /><br />
3、擴展例子:
<html><head><title>Math-生成隨機數的例子-www.survivalescaperooms.com</title></head><body><script language="javascript" type="text/javascript">total = 0for(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生成隨機數(指定范圍)的實例代碼就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。
新聞熱點
疑難解答