在作函数封装时,一个最常用的方法就是Function.createDelegate。函数签名为:
Function.createDelegate(instance, method)
该方法会返回一个回调函数.
比如:
fireAfter : function(seconds)
{
setTimeout(Function.createDelegate(this, this._timeoutCallback), seconds * 1000);
},
如果直接将一个函数交给一些HTML控件作为回调函数,在事件发生时this所引用的对象就是该控件,而不是我们自定义的对象,例如把一个函数交给window.setTimeout后,this就变成的window。Function.createDelegate则解决了这一点,一般要响应HTML控件的回调时,都使用该方法比较妥当。它保证了method参数所引用的方法被调用时,this所引用的一定是instance参数对象。
转自:http://aloneplayer.spaces.live.com/blog/cns!C3CB6D654135F83D!371.entry