使用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);