window.orientation 在 UIWebView 中不起作用
我正在使用 3.2 和 4.0 iO,并且尝试在 UIWebView 中运行 html 文件。 html 文件包含以下几行:
var pwint = function(text) {
var output = document.getElementById('output');
output.innerHTML = output.innerHTML + text + '\n';
};
var reorient = function(e) {
pwint('Window Orientation: ' + window.orientation);
};
window.onorientationchange = reorient
问题是,当我在 safari 中运行相同的代码时,window.orientation
总是返回“0”,它按预期工作。
有什么想法吗?
I am using 3.2 and 4.0 iOs and I am trying to run html file in UIWebView.
the html file contains to following lines:
var pwint = function(text) {
var output = document.getElementById('output');
output.innerHTML = output.innerHTML + text + '\n';
};
var reorient = function(e) {
pwint('Window Orientation: ' + window.orientation);
};
window.onorientationchange = reorient
The problem is that window.orientation
always returns '0' while I run the same code in safari it works as expected.
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其应用于
document.body.onorientationchange
。Try applying it to
document.body.onorientationchange
.