更改图像样式是否会导致 LoadEvent 被触发?

发布于 2024-10-21 07:03:59 字数 523 浏览 2 评论 0原文

据我所知,图像样式的更改导致 LoadEvent 被触发。有人可以证实这一点吗?解释一下这个?这是 Firefox 3 上的 GWT。

Image image = new Image("image_src_URL");

image.addLoadHandler(new LoadHandler() {
    @Override
    public void onLoad(LoadEvent event) {
        double ratio = 0.5;
        image.getElement().getStyle().setWidth(image.getWidth() * ratio, Style.Unit.PX);
        Window.alert("You are in onLoad");
    }
}

这段代码实际上位于 onLoad 方法内部,我可以清楚地看到它被输入了两次。有什么提示吗?还有另一种方法可以调整图像大小而不会触发事件吗? image.setWidth() 的作用相同。

As far as I can tell, this change to the image style is causing the LoadEvent to be fired. Can someone confirm this? Explain this? This is GWT on Firefox 3.

Image image = new Image("image_src_URL");

image.addLoadHandler(new LoadHandler() {
    @Override
    public void onLoad(LoadEvent event) {
        double ratio = 0.5;
        image.getElement().getStyle().setWidth(image.getWidth() * ratio, Style.Unit.PX);
        Window.alert("You are in onLoad");
    }
}

This code actually sits inside the onLoad method, and I can clearly see that it is entered twice. Any hints? Is there another way to resize the image that won't fire the event? image.setWidth() does the same.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伪装你 2024-10-28 07:03:59

您是否需要多次触发 LoadHandler?您可以注销它:

new LoadHandler() {
  HandlerRegistration reg = image.addLoadHandler(this);

  @Override
  public void onLoad(LoadEvent evt) {
    reg.removeHandler();
    // Reset style
  }
}

Do you need the LoadHandler to ever fire more than once? You could de-register it:

new LoadHandler() {
  HandlerRegistration reg = image.addLoadHandler(this);

  @Override
  public void onLoad(LoadEvent evt) {
    reg.removeHandler();
    // Reset style
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文