📜  清除间隔 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:22.041000             🧑  作者: Mango

代码示例2
/*  add interval to a variable */
var flashing = setInterval(function(){
$('.flash').toggleClass('red');
},300);

/* add a timerout function to clear the intervalfunction  */
setTimeout(function(){
clearInterval(flashing);
},1500);