随机数

Posted 瑞瑞大人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机数相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <div id="one" style="color:red ;font-size:10cm; text-align:center;">0</div>
        <script>
        one=document.getElement("one")
        var i=1;
        var dt=null;
        function stop(){
            clearInterval(dt)
        }
        function star(){
            dt=setInterval(function(){
                one.innerText=Math.round(Math.random()*100)
            },50)
        }
        </script>
        <button onclick="star()">开始</button>
        <button onclick="stop()">结束</button>
        
    </body>
</html>

以上是关于随机数的主要内容,如果未能解决你的问题,请参考以下文章