GWT/Firefox:getOffsetHeight() 始终返回 0

发布于 2024-07-22 21:26:35 字数 353 浏览 5 评论 0原文

使用 GWT 1.6.4,我有以下代码来检索浏览器窗口的尺寸:

RootPanel panel = RootPanel.get();

int height = panel.getOffsetHeight();
int width = panel.getOffsetWidth();

现在,在托管模式浏览器和 IE 中(但我相信托管模式浏览器使用 IE,对吧?),这会返回正确的值宽度和高度的值。 然而,在 FF3 中,宽度给出了正确的值,但高度始终为零。 谁能解释一下吗? 难道我做错了什么? 在 Firefox 中检索窗口高度的正确方法是什么?是否有一种方法可以在 IE 和 Firefox 中正常工作?

Using GWT 1.6.4, I have the following code to retrieve the dimensions of the browser window:

RootPanel panel = RootPanel.get();

int height = panel.getOffsetHeight();
int width = panel.getOffsetWidth();

Now, in the Hosted Mode browser, and in IE (but I believe the hosted mode browser uses IE, right?), this returns the correct values for both width and height. However, in FF3, width gives the correct value, but height is always zero. Can anyone explain this? Am I doing something wrong? What is the correct way to retrieve the height of the window in Firefox, and is there one method that works correctly in both IE and Firefox?

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

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

发布评论

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

评论(3

兔小萌 2024-07-29 21:26:35

您是否尝试过 Window.getClientHeight() 和 Window.getClientWidth() 方法?

查看 JavaDocs

Did you try the Window.getClientHeight() and Window.getClientWidth() methods?

Check out the JavaDocs.

青春有你 2024-07-29 21:26:35

使用 javascript,您可以通过以下方式获取窗口高度:

int height = document.body.clientHeight;

现在,我不知道 GWT 是否为您提供指定特定的 javascript 片段。 您可能想在 GWT google 群组中发帖,该群组位于:http://groups.google.com/group/Google-Web-Toolkit?pli=1

Using javascript, you can grab the window height with:

int height = document.body.clientHeight;

Now whether GWT gives you anyway to specify specific javascript pieces, I don't know. You may want to post in the GWT google group, which can be found at: http://groups.google.com/group/Google-Web-Toolkit?pli=1

何止钟意 2024-07-29 21:26:35

我在这里进行大胆的猜测:在 Firefox 中,当您检查 RootPanel.get().getOffsetHeight() 时,它是空的,并且没有延伸到视口中,只是水平延伸。
因此,如果您需要实际的窗口/视口尺寸,最好使用 Window.getClientHeight() 。

I'm taking a wild guess here: in Firefox, in the moment you check RootPanel.get().getOffsetHeight(), it's empty and not stretching into the viewport, only horizontally.
So better use Window.getClientHeight() if you need the actual window/viewport dimensions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文