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