Math.random() 返回介于 0(包括)与 1(不包括)之间的随机整数

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>JavaScript Math.random()</h2>
  6.  
  7. <p>Math.random() 返回 0(包含)和 1(不包括)之间的随机数:</p>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. document.getElementById("demo").innerHTML = Math.random();
  13. </script>
  14.  
  15. </body>
  16. </html>