屏幕宽度 +安卓

发布于 2024-10-17 11:58:00 字数 89 浏览 2 评论 0原文

如果我使用 DroidX 本机浏览器追踪 screen.width,我首先会按预期收到 320,但在后续重新加载(不改变方向)时,我会收到 800...这是为什么?

If I trace out the screen.width with my DroidX native browser, I first receive 320 as expected, but on subsequent reloads (without changing orientation) I receive 800... why is this?

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

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

发布评论

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

评论(1

木格 2024-10-24 11:58:00

这是一个 Android 错误。有时,当页面首次加载时,window.screen.width 和 window.screen.height 是错误的。您可以尝试设置超时,然后运行您的代码。

setTimeout(YourFunction, 200);

另请参阅此处 安卓问题

It is an Android bug. Sometimes when page first loads the window.screen.width and window.screen.height are wrong. You can try to make a timeout and then run your code.

setTimeout(YourFunction, 200);

Also see here android issue

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