<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> |
|