setInterval的使用和停用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了setInterval的使用和停用相关的知识,希望对你有一定的参考价值。

            var res = self.setInterval(function(){
                         if(typeof(UE.getEditor(‘editor‘).body.innerhtml) != "undefined"){
                            UE.getEditor(‘editor‘).setContent(data.body);
                            clearInterval(res);
                            console.log("填充完毕,停止setInterval循环");
                        }
                        console.log("500ms执行一次,本次已结束了");
                    },500);

 

var res = self.setInterval(function(){       //console.log("开始填充body到UE.getEditor(‘editor‘).body.innerHTML");       //console.log("typeof(UE.getEditor(‘editor‘).body.innerHTML)是否已存在:"+typeof(UE.getEditor(‘editor‘).body.innerHTML));console.log(new Date().getTime());if(typeof(UE.getEditor(‘editor‘).body.innerHTML) != "undefined"){UE.getEditor(‘editor‘).setContent(data.body);clearInterval(res);console.log("填充完毕,停止setInterval循环");}console.log("500ms执行一次,本次已结束了");},500);

以上是关于setInterval的使用和停用的主要内容,如果未能解决你的问题,请参考以下文章

前端防扒代码片段

前端防扒代码片段

前端防扒代码片段

前端防扒代码片段

Android 目的地片段未出现在导航中

setInterval和setTimeout的使用区别