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

あなたは同じ文脈でこの質問を2回しました:)

私の答えを確認してください。それは間違いなくあなたの問題を解決します。

于 2014-03-08T20:12:46.297 に答える