要停止 setinterval 函数,需要使用 clearinterval() 或 cleartimeout() 方法,这两个方法接受定时器 id 作为参数,停止指定的定时器。
如何停止 setInterval 函数
setInterval 函数用于在指定的时间间隔内执行指定的函数。要停止该函数,可以使用以下方法:
1. 使用 clearInterval() 方法
clearInterval() 方法接受一个 setInterval() 函数返回的定时器 ID 作为参数,并停止该定时器。
语法:
clearInterval(timerID);
示例:
const timerID = setInterval(() => { console.log("Hello world!"); }, 1000); // 5 秒后停止定时器 setTimeout(() => { clearInterval(timerID); }, 5000);
2. 使用 clearTimeout() 方法(在 setTimeout() 中使用时)
clearTimeout() 方法也可以用于停止 setInterval() 函数,如果该函数是在 setTimeout() 中调用的。
语法:
clearTimeout(timerID);
示例:
let timerID; // 5 秒后执行 setInterval() setTimeout(() => { timerID = setInterval(() => { console.log("Hello world!"); }, 1000); }, 5000); // 10 秒后停止定时器 setTimeout(() => { clearTimeout(timerID); }, 10000);
注意:
- 定时器 ID 是 setInterval() 函数返回的唯一标识符,用于标识特定定时器。
- clearInterval() 和 clearTimeout() 方法实际上是相同的,但对于不同的场景有不同的命名约定。