{
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配置项添加的事件");
}
}
}
慕的地10843
慕容森