我有3个子问题。我使用Android Chrome在我的Android手机(720 * 1280)上运行了以下javascripts。我在页面开始加载时和windown.onload中运行它。但是我得到了如下奇怪的结果。
//execute with Android UC browser when page starts to load
document.writeln(window.screen.width);
document.writeln("<br />");
document.writeln(window.screen.height);
document.writeln("<br />");
document.writeln(document.body.clientWidth);
document.writeln("<br />");
document.writeln(document.body.clientHeight);
720
1280
964
114
//execute with Android UC browser in window.onload
document.writeln(window.screen.width);
document.writeln("<br />");
document.writeln(window.screen.height);
document.writeln("<br />");
document.writeln(document.body.clientWidth);
document.writeln("<br />");
document.writeln(document.body.clientHeight);
720
1280
964
266
//execute in Android Chrome when page starts to load
document.writeln(window.screen.width);
document.writeln("<br />");
document.writeln(window.screen.height);
document.writeln("<br />");
document.writeln(document.body.clientWidth);
document.writeln("<br />");
document.writeln(document.body.clientHeight);
360
640
360
640
32
964
132
//execute in Android Chrome window.onload
document.writeln(window.screen.width);
document.writeln("<br />");
document.writeln(window.screen.height);
document.writeln("<br />");
document.writeln(document.body.clientWidth);
document.writeln("<br />");
document.writeln(document.body.clientHeight);
360
640
360
640
32
964
308