大家在製作網頁或小程式的時候常用到隨機數,作者整理了一個很簡單的JS產生隨機數的程序,一起學習下。
我們先來看下本次原始碼的效果圖
#大家可以彈性運用,我們把具體JS程式碼分享給大家:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Document</title> <style> #count{ font-size: 20px; color: green; width: 400px; height: 30px; border: 1px solid black; margin: auto; line-height: 30px; text-align: center; } </style> </head> <body> <p id="count"></p> <script> //产生随机数 function count (){ var i=Math.random()*(999999-100000)+100000; var j=parseInt(i,10); j="100000-999999随机产生:"+j; document.getElementById("count").innerHTML= j; } setInterval("count()",100); </script> </body> </html>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是js隨機產生6位數隨機數的詳細內容。更多資訊請關注PHP中文網其他相關文章!