Ext.tree.CustomTreeLoader=function(){ 
      this.superclass.constructor.apply(this,arguments); 
}
这种写法有点儿像js中类滴继承,即tree继承自superclass,但是为啥有个constructor?
this.superclass.apply(this,arguments); //表示superclass的实例化。superclass应该是定义在Ext.tree上的属性,至于定义的位置要lz自己去找了。