screen.width + android

荒凉一梦 提交于 2019-12-28 13:57:09

问题


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?


回答1:


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



来源:https://stackoverflow.com/questions/5021090/screen-width-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!