1

我正在开发适用于 ios 和 android 的 webapp。在平板电脑上运行时,方向是横向的。

应用在安卓平板上运行时,包含的样式文件是正确的,但在iPad 2上运行时,包含的样式文件是错误的。

然后我在安卓平板电脑上收到警报window.outerHeightwindow.outer它是 768 和 1024。除了我在 ipad2 上得到 1024 和 1024。它应该是7681024

这是元标记:

<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<meta content="telephone=no" name="format-detection" />

如何window.outerHeight在 iPad 2 上设置为 768?

4

1 回答 1

0

Have you tried removing

<meta content="telephone=no" name="format-detection" />

I've had this problem, and for me it was in the viewport meta tag (height=device-height). The only other suspicious one in your code seems to be

<meta content="telephone=no" name="format-detection" />
于 2014-01-22T08:19:13.607 回答