我們先來(lái)看下本次源碼的效果圖
大家可以靈活運(yùn)用,我們把具體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> <div id="count"></div> <script> //產(chǎn)生隨機(jī)數(shù) function count (){ var i=Math.random()*(999999-100000)+100000; var j=parseInt(i,10); j="100000-999999隨機(jī)產(chǎn)生:"+j; document.getElementById("count").innerHTML= j; } setInterval("count()",100); </script> </body> </html>
如果大家還有更簡(jiǎn)單的方法,可以在下方的留言區(qū)討論。
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com