定義和用法
語法
clearTimeout(id_of_settimeout)
參數 | 描述 |
id_of_settimeout | 由 setTimeout() 返回的 ID 值。該值標識要取消的延遲執行代碼塊。 |
實例
下面的例子每秒調用一次 timedCount() 函式。您也可以使用一個按鈕來終止這個定時訊息:
<html>
<head>
<script type="text/javascript">
var c=0;
var t;
function timedCount()
{
document.getElementById('txt').value=c;
c=c+1;
t=setTimeout("timedCount()",1000);
}
function stopCount()
{
clearTimeout(t);
}
</script>
</head>
<body>
<form>
<input type="button" value="Start count!" onClick="timedCount()"><input type="text" id="txt">
<input type="button" value="Stop count!" onClick="stopCount()">
</form>
</body>
</html>