使用setTimeout实现setInterval

function mySetInterval(fun,interval) {
    setTimeout(function () {
        fun();
        setTimeout(arguments.callee, interval);
    }, interval)
};

function func() {
    console.log('1');
}
mySetInterval(func,1000);

你可能感兴趣的:(使用setTimeout实现setInterval)