window.clearInterval與window.setInterval的用法

轉載自:http://www.cnblogs.com/liences/archive/2011/11/25/2262883.html

window.clearInterval與window.setInterval的用法

 

window.setInterval()javascript

功能:按照指定的週期(以毫秒計)來調用函數或計算表達式。html

語法:setInterval(code,millisec)java

 

解釋:code:在定時時間到時要執行的JavaScript代碼串。函數

millisec:設定的定時時間,用毫秒數表示。post

返回值:定時器的ID值,可用於clearInterval()方法中止指定的定時器。spa

注:setInterval()方法會不停地調用函數,直到用clearInterval()終止定時或窗口被關閉。code

window.clearInterval()htm

功能:取消由setInterval()方法設置的定時器。blog

語法:clearInterval(id_of_setinterval)ip

解釋: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)是中止定時器

相關文章
相關標籤/搜索