欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何使JavaScript的setInterval中的函數先執行一次?

錢衛國2年前13瀏覽0評論

自己給setInterval加個包裝就可以了:

//Wrapper
functionsetIntervalEx(method,interval){
method();//
setInterval(method,interval);
}
//Callback
functiondoSomething(){
console.log("yourbusinesscodehere");
}
//CallyourwrappersetIntervalEx(doSomething,1000);