Ext.extend 详解
Ext.extend在Extjs 中扮演着重大角色,是Extjs中几个重要函数之一。要想深入了解EXTJS,这个函数非掌握不可,网上有很多关于这个函数的源码分析和介绍方面的文章,这里我只总结关于这个函数的使用的下几种情况,不详细分析这个函数的源码。 example one: view source print ? 01 function Base(config) { 02 this .name=config.name; 03 this .age=config.age; 04 this .sex=config.sex; 05 } 06 07 function base(config) { 08 this .identity=config.identity; 09 this .msg=config.msg; 10 this .phone=config.phone; 11 12 base.superclass.constructor.call( this ,config); 13 } 14 15 Ext.extend(base,Base,{ 16 showMsg: function (){ 17 window.alert( this .name+ ' ' + this .age+ ' ' + this .sex+ ' ' + this .identity+ ' ' + this .msg