博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
setInterval和setTimeout的区别
阅读量:6841 次
发布时间:2019-06-26

本文共 568 字,大约阅读时间需要 1 分钟。

setTimeout(表达式,延时时间) 

在执行时,是在载入后延迟指定时间后,去执行一次表达式,记住,次数是一次 
用setTimeout实现的自动变化显示随机数的效果: 
<html>  
<head>  
<script>  
window.οnlοad=sett;  
function sett()  
{  
document.body.innerHTML=Math.random();  
setTimeout("sett()",500);  
}  
</script>  
</head>  
<body>  
</body>  
</html>  
setInterval(表达式,交互时间) 
则不一样,它从载入后,每隔指定的时间就执行一次表达式 
用setInterval实现的自动变化显示随机数的效果: 
<html>  
<head>  
<script>  
function sett()  
{  
document.body.innerHTML=Math.random();  
}  
setInterval("sett();", 500);  
</script>  
</script>  
</head>  
<body>  
</body>  
</html>

转载于:https://www.cnblogs.com/zhangchenliang/archive/2008/03/06/1093373.html

你可能感兴趣的文章