RT 因为匿名函数中this指针本来就指向window不明白 如果只是想通过通过apply传递args参数列表完全可以写成fn.apply(window, args); 此举有何意义fn.apply(context, args); let timer = null; return function() { let context = this; let args = arguments; clearTimeout(timer); timer = setTimeout(function() { fn.apply(context, args); }, delay); }}
添加回答
举报
0/150
提交
取消