回答你一次,你采纳自己一次。
加载结束事件(鼠标悬浮,字体变色):
$(".ui-state-enabled.fr-form-imgboard").bind("mouseover",function(){
$(this).find("span").css("color","white");
}).bind("mouseleave",function(){
$(this).find("span").css("color","black");
})
以上代码仅适用于自定义按钮,报表默认的查询按钮不适用。