Javascript 產生指定範圍數值隨機數 By shawl.qiu

來源:互聯網
上載者:User
javascript|隨機 說明:
俺本來以為 Js 的隨機數應該沒啥, 查查手冊就得了. 
查手冊後才知道, 介紹的資訊少得可憐呐, 沒有介紹產生 m-n 範圍的隨機數..., 就只是給你一個 Math.random() 了事.

不過經過俺的小小努力之後, 終於讓俺摸著門道嘍, 問題也就理所當然滴解決掉. 

然後就寫了個公式, 這樣應該可以消失掉這個用法了, 公式:

1. 從1開始 至 任意值
    linenum
  1. parseInt(Math.random()*上限+1);

2. 從任意值開始 至 任意值
    linenum
  1. parseInt(Math.random()*(上限-下限+1)+下限);

上面的公式使用了 parseInt(), 因此要加1; 如果使用 Math.ceil() 則不需要加1, 俺習慣於這樣寫...

目錄:
1. 示範1 (直接進行產生隨機數操作)
2. 示範2 (寫成函數進行產生隨機數操作)

shawl.qiu
2006-10-28
http://blog.csdn.net/btbtd

1. 示範1 (直接進行產生隨機數操作)
    linenum
  1. <script type="text/javascript">
  2. //<![CDATA[
  3.     window.onload=function(){
  4.         var n=na=nb=nc='';
  5.             n=parseInt(Math.random()*10+1);
  6.             na=parseInt(Math.random()*(20-11+1) + 11);
  7.             nb=parseInt(Math.random()*100+1);
  8.             nc=parseInt(Math.random()*(100-51+1) + 51);
  9.             
  10.         var o=document.getElementsByTagName('input');
  11.             o[0].value=n;
  12.             o[1].value=na;
  13.             o[2].value=nb;
  14.             o[3].value=nc;
  15.     } // shawl.qiu script
  16. //]]>
  17. </script>
  18. 1-10: <input type="text" /><br />
  19. 11-20: <input type="text" /><br />
  20. 1-100: <input type="text" /><br />
  21. 51-100: <input type="text" /><br />

2. 示範2 (寫成函數進行產生隨機數操作)
    linenum
  1. <script type="text/javascript">
  2. //<![CDATA[
  3.     window.onload=function(){
  4.         var o=document.getElementsByTagName('input');
  5.             o[0].value=fRandomBy(10);
  6.             o[1].value=fRandomBy(11, 20);
  7.             o[2].value=fRandomBy(1, 100);
  8.             o[3].value=fRandomBy(51, 100);
  9.     }
  10.     
  11.     function fRandomBy(under, over){
  12.         switch(arguments.length){
  13.             case 1: return parseInt(Math.random()*under+1);
  14.             case 2: return parseInt(Math.random()*(over-under+1) + under); 
  15.             default: return 0;
  16.         }
  17.     }  // shawl.qiu script
  18. //]]>
  19. </script>
  20. 1-10: <input type="text" /><br />
  21. 11-20: <input type="text" /><br />
  22. 1-100: <input type="text" /><br />
  23. 51-100: <input type="text" /><br />



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.