ExtJS Defer

Description

ExtJS 推迟方法。

Example

1 Ext.defer(MyApp.destroyWindow, /* function to call */
2           5000, /* timeout in milliseconds */,
3           MyApp, /* scope of the called function */
4           [myWindow] /* array of arguments to provide the function */
5 );

Reference

原文地址:https://www.cnblogs.com/yuxiaoqi/p/5143517.html