window.setInterval()
功能:按照指定的周期(以毫秒計)來調用函數或計算表達式。
語法:setInterval(code,millisec)
解釋:code:在定時時間到時要執(zhí)行的JavaScript代碼串。
millisec:設定的定時時間,用毫秒數表示。
返回值:定時器的ID值,可用于clearInterval()方法停止指定的定時器。
注:setInterval()方法會不停地調用函數,直到用clearInterval()終止定時或窗口被關閉。
window.clearInterval()
功能:取消由setInterval()方法設置的定時器。
語法:clearInterval(id_of_setinterval)
解釋:id_of_setinterval:由setInterval()返回的ID值。該值標識了一個setInterval定時器。
也就是:window.setInterval()返回的就是window.clearInterval的參數
例子:
<script type="text/javascript">
var count = 0;
var timeID;
function timeCount()
{
document.getElementByIdx('timetxt').value = count;
count++;
}
function beginCount()
{
timeID = setInterval("timeCount()",1000);
}
function stopCount()
{
clearInterval(timeID);
}
</script>
<input type="button" value="開始計時" onclick="beginCount()" />
<input type="text" id="timetxt" size="5" />
<input type="button" value="停止計時" onclick="stopCount()" />
再如:
var objTimer = window.setInterval("moveDiv()",10)是調動定時器,其中moveDiv是js的一個函數
if(objTimer) window.clearInterval(objTimer)是停止定時器
更多信息請查看IT技術專欄