码迷,mamicode.com
首页 > Web开发 > 详细

Ext JS学习第七天 Ext自定义类,继承(二)

时间:2014-08-24 00:15:01      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   io   ar   div   cti   

此文来记录学习笔记

一个简单ext继承的栗子

Ext.onReady(function () {
Ext.define(‘Person‘,{
    config:{
        name:‘z3‘
    } ,
    constructor:function(config){
        var me = this ;
        me.initConfig(config);
    }
    });
    //Sub Class
    Ext.define(‘Boy‘,{
    //使用Ext的继承
    extend:‘Person‘,
        config:{
        sex:‘男‘,
    age:20
    }
    });
    var b = Ext.create(‘Boy‘,{
        name:‘张三‘,
        age:25
    });

})
    alert(b.name);
    alert(b.sex);
    alert(b.age);
})

 

给各位推荐个文章网www.fishcmonkey.com,学习之余提高文学修养

Ext JS学习第七天 Ext自定义类,继承(二)

标签:style   blog   http   color   使用   io   ar   div   cti   

原文地址:http://www.cnblogs.com/lisr/p/3932071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!