[setTimeout]
setTimeout(表達(dá)式,延時(shí)時(shí)間)
在執(zhí)行時(shí),是在載入后延遲指定時(shí)間后,去執(zhí)行一次表達(dá)式,記住,次數(shù)是一次
用setTimeout實(shí)現(xiàn)的自動(dòng)變化顯示隨機(jī)數(shù)的效果:
<html>
<head>
<script>
window.onload=sett;
function sett()
{
document.body.innerHTML=Math.random();
setTimeout("sett()",500);
}
</script>
</head>
<body>
</body>
</html>
[setInterval]
setInterval(表達(dá)式,交互時(shí)間)
則不一樣,它從載入后,每隔指定的時(shí)間就執(zhí)行一次表達(dá)式
用setInterval實(shí)現(xiàn)的自動(dòng)變化顯示隨機(jī)數(shù)的效果:
<html>
<head>
<script>
function sett()
{
document.body.innerHTML=Math.random();
}
setInterval("sett();", 500);
</script>
</script>
</head>
<body>
</body>
</html>
該文章在 2012/7/11 9:54:23 編輯過(guò)