{xtype: "button",id: "btn1",text: "小按钮",handler: function () {Ext.MessageBox.alert("提示", "通过handler配置项添加的事件");}}和{xtype: "button",id: "btn2",text: "中按钮",scale: "medium",listeners: {click: function () {Ext.MessageBox.alert("提示", "通过listeners配置项添加的事件");}}}
2 回答
慕容森
TA贡献1853条经验 获得超18个赞
var TimeBar = Ext.create('Ext.toolbar.Toolbar', {
renderTo : Ext.getBody(),
width : 500,
height : 20,
items : [{
xtype : 'button',
text : 'Sample Text Item',
handler : function () {
alert("handler");
},
listeners : {
click : function (btn) {
alert("click1");
}
}
}
]
});
TimeBar.down('button').addListener('click', function (btn) {
alert('click2');
});
测试下这段代码你就知道区别了
添加回答
举报
0/150
提交
取消