Jscript中window.setInterval和window.setTimeout區別

weixin_34262482發表於2007-01-31
[setTimeout]
setTimeout(表示式,延時時間)
在執行時,是在載入後延遲指定時間後,去執行一次表示式,記住,次數是一次

用setTimeout實現的自動變化顯示隨機數的效果:

<html>
<head>
<script>
window.onload=sett;
function sett()
{
document.body.innerHTML=Math.random();
setTimeout("sett()",500);
}
</script>
</head>
<body>
</body>
</html>


[setInterval]
setInterval(表示式,互動時間)
則不一樣,它從載入後,每隔指定的時間就執行一次表示式

用setInterval實現的自動變化顯示隨機數的效果:

<html>
<head>
<script>
function sett()
{
document.body.innerHTML=Math.random();
}
setInterval("sett();", 500);
</script>
</script>
</head>
<body>
</body>
</html>

相關文章