日期:2014-05-16 浏览次数:20384 次
Employee = Ext.extend(Ext.util.Observable, { constructor : function(config) { this.name = config.name; this.addEvents({ "fired" : true, "quit" : true }); // 拷贝配置的监听器到*this*对象里,使得基础类的 // 构造器将会被添加。 this.listeners = config.listeners; // 调用我们父类的构造器来完成构造过程。 Employee.superclass.constructor.call(this, config) } }); Ext.onReady(function() { /* var newEmployee = new Employee({ // name : 'tom', // listeners : { // quit : function() { // // 使用 default, 则"this"将会是触发事件的对象。 // alert(this.name + " has quit!"); // } // } name : 'tom' }); newEmployee.on('quit', function() { Ext.Msg.alert(this.name + " has quit!"); }); Ext.get('emp').on('click', function() { newEmployee.fireEvent('quit'); }); */ Ext.get('emp').on('keypress',function(e){ if(e.charCode==Ext.EventObject.SPACE){ Ext.Msg.alert("info","你点击了空格键") } }) });