先把按钮默认的cls设置成鼠标放上去的样子x-btn-over。然后添加鼠标移开的事件。删除和添加这个样式
text : '查询',
iconCls:'icon-find',
cls:'x-btn-over',
listeners:{
mouseout:function(){
this.removeClass('x-btn-over');
this.addClass('x-btn-over');
}
},
handler : function() {