跳到主要内容

defer

_.defer(function, *arguments)
延迟调用 function 直到当前调用栈清空为止,类似使用延时为0的 setTimeout 方法。对于执行开销大的计算和无阻塞 UI 线程的 HTML 渲染时候非常有用。 如果传递 arguments 参数,当函数 function 执行时, arguments 会作为参数传入。

_.defer(function(){ alert('deferred'); });
// Returns from the function before the alert runs.