clearInterval函數(shù)用于清除由setInterval函數(shù)創(chuàng)建的定時(shí)器。
使用方法如下:
let intervalId = setInterval(function() {
// 定時(shí)器執(zhí)行的代碼
}, 1000);
clearInterval(intervalId);
以上代碼將清除之前創(chuàng)建的定時(shí)器,停止定時(shí)器的執(zhí)行。
注意:在使用clearInterval函數(shù)之前,確保定時(shí)器的變量是在當(dāng)前作用域中可訪問的。