0

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

1 回答 1

0

你已经在相同的上下文中问过这个问题两次了:)

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

于 2014-03-08T20:12:46.297 回答