如何返回介于 0 与 100 之间(都包括)的随机整数
- <!DOCTYPE html>
- <html>
- <body>
- <h2>JavaScript Math</h2>
- <p>Math.floor() 与 Math.random() * 101 一起使用,返回 0 与 100 之间的随机整数(均包含):</p>
- <p id="demo"></p>
- <script>
- document.getElementById("demo").innerHTML =
- Math.floor(Math.random() * 101);
- </script>
- </body>
- </html>