87,964
社区成员
发帖
与我相关
我的任务
分享
function repeat(func, times, wait) {
//不用匿名函数是为了方便调试
function repeatImpl() {
var handle, _arguments = arguments;
var i = 0;
handle = setInterval(function() {
i = i + 1;
//到达指定次数取消定时器
if (i === times) {
clearInterval(handle);
return;
}
func.apply(null, _arguments);
}, wait);
}
return repeatImpl;
}
var repeatFun = repeat(alert, 4, 3000);
repeatFun("hellworld");