随机数

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>

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

电脑取随机数是啥原理,是真正的随机数吗?

SylixOS下获取随机数方法

java随机生成6位随机数 5位随机数 4位随机数

随机数(不重复)

伪随机数,随机数种子seed

详解随机数的生成