如何返回介于 x(包括)与 y(不包括)之间的随机整数

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>JavaScript Math.random()</h2>
  6.  
  7. <p>每当您点击按钮,getRndInteger(min, max) 就会返回 0 与 9(均包含)之间的随机数:</p>
  8.  
  9. <button onclick="document.getElementById('demo').innerHTML = getRndInteger(0,10)">点击我</button>
  10.  
  11. <p id="demo"></p>
  12.  
  13. <script>
  14. function getRndInteger(min, max) {
  15. return Math.floor(Math.random() * (max - min)) + min;
  16. }
  17. </script>
  18.  
  19. </body>
  20. </html>