当呈现元素中的文本时,代码将发出警报1。 (来自外部JSON位加载缓慢)。我有它的工作。唯一的缺点是它会保持运行,即使它是真的。
我希望循环继续检查文本是否每5秒渲染一次,并在完成时停止循环。
$(this).parent().next('.lastName-holder').html('test');
$(this).closest('tr').next('.lastName-holder').html('test');
答案 0 :(得分:3)
您需要查看clearInterval方法
var interval = setInterval(function () {
// do something here
// When a condition is met and you want to kill the timeout
clearInterval(interval);
}, 2000);