GwtQuery用于“点击”事件它也会在悬停事件中触发(有时)

时间:2014-03-06 06:11:12

标签: java jquery gwt gwtquery gquery

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;
        }
    });

1 个答案:

答案 0 :(得分:0)

你在同一背景下两次提出这个问题:)

请检查我的answer。它肯定会解决你的问题。