循环更多CPU友好的Js

时间:2016-07-31 21:55:19

标签: javascript loops

当呈现元素中的文本时,代码将发出警报1。 (来自外部JSON位加载缓慢)。我有它的工作。唯一的缺点是它会保持运行,即使它是真的。

我希望循环继续检查文本是否每5秒渲染一次,并在完成时停止循环。

 $(this).parent().next('.lastName-holder').html('test');
 $(this).closest('tr').next('.lastName-holder').html('test');

1 个答案:

答案 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);