A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

<script type="text/javascript">
//设置定时器变量
var times;
        function start1()
        {//每隔一秒钟执行函数getrandom()
                times=window.setInterval("getrandom()",100)
        }
        //获取随机数函数
function getrandom(min,max)
        {
               //随机数公式
                        var random=Math.random()*(max-min)+min;
                        //舍去随机数的小数
                                random=Math.floor(random);
                                document.write(random);
        }
        //调用随机数函数
getrandom(5,60);
//清除定时器
function stop1()
        {
                window.clearInterval(times);
        }

</script>
</head>

<body>
<br>
<input type="button" value="开始" onclick="start1()"/>
<input type="button" value="停止" onclick="stop1()"/>
</body>
</html>

1 个回复

倒序浏览
start1()里调用的getrandom()没有参数,而你定义的getrandom()是需要传参的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马