[Ext JS 7]7.2 事件(Event)

監聽事件

一個組件可以監聽多個事件,比如

            Ext.create('Ext.Button', {
                renderTo: Ext.getBody(),
                text: 'My Button',
                listeners: {
                    mouseover: function () {//鼠標放上去調用hide()方法
                        this.hide(); //hide也是默認方法,可以重寫
                    },
                    hide: function () {
                        // 1 秒後顯示
                 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章