GwtQuery用于“点击”事件它也会在悬停时触发(有时),为什么会这样?
$("html").bind("click", new com.google.gwt.query.client.Function() {
@Override
public boolean f(com.google.gwt.user.client.Event e) {
$(".hopscotch-bubble").fadeOut(new com.google.gwt.query.client.Function() {
@Override
public void f() {
JSNIHelper.infoNotify("INFO", "Fade out method invoked.");
}
});
return true;
}
});
答案 0 :(得分:0)
你在同一背景下两次提出这个问题:)
请检查我的answer。它肯定会解决你的问题。