要傳回 1 到 200 之間的隨機數,請使用 JavaScript Math.random() 和 Math.floor() 方法。
您可以嘗試執行下面的程式碼在 JavaScript 中傳回一個隨機數字。
<!DOCTYPE html> <html> <body> <script> document.write(Math.floor(Math.random() * 200) + 1); </script> </body> </html>
以上是如何使用JavaScript傳回介於1和200之間的隨機數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!