使用setTimeout实现setInterval

2017-12-27  本文已影响20人  SheldonYu
function mySetInterval(fun,interval) {
    setTimeout(function () {
        fun();
        setTimeout(arguments.callee, interval);
    }, interval)
};

function func() {
    console.log('1');
}
mySetInterval(func,1000);
上一篇下一篇

猜你喜欢

热点阅读