问题
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