让我的代码连续运行JS

时间:2017-08-22 00:24:33

标签: javascript

可以帮助我的代码在我的页面中连续运行

注意:我正在使用phprunner

    function funcAfter(fieldsData) {  
    for (f in fieldsData) {  
        var field = fieldsData[f];  
        if (field.name == 'Acceptance') {  
            if (field.value == 'Rejected') {  
                field.container.closest('td').css('background', 'red');  
                field.container.closest('td').css('color', 'white');  
            } else if (field.value == 'Accepted') {  
                field.container.closest('td').css('background', 'blue');  
                field.container.closest('td').css('color', 'white');  
            }  
        }  
    }  
}  
this.on('afterInlineEdit', funcAfter);  
this.on('afterInlineAdd', funcAfter);

1 个答案:

答案 0 :(得分:0)

如果您想在页面上连续运行该代码,可以使用 setInterval 功能,例如:

setInterval(funcAfter, 200) // 200 is the interval of time you want to run your code

但上面是一个糟糕的实现,如果你提供更多的上下文,答案可能会更好