停止setInterval

停止setInterval,第1张

停止setInterval

您需要

setInterval
点击处理程序范围内将的返回值设置为变量,然后
clearInterval()
像这样使用:

var interval = null;$(document).on('ready',function(){    interval = setInterval(updateDiv,3000);});function updateDiv(){    $.ajax({        url: 'getContent.php',        success: function(data){ $('.square').html(data);        },        error: function(){ clearInterval(interval); // stop the interval $.playSound('oneday.wav'); $('.square').html('<span >Connection problems</span>');        }    });}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5566273.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存