我正在构建一个旨在在 Android 浏览器上运行的网络应用程序。
当我的网页包含任何类型的视口元标记时,如下所示:
<meta name="viewport" content="width=400"/>
我的网页在 ajax 调用时崩溃。它发生在使用模拟器、我的 nexus 上的实际浏览器和机器人(都运行 Android 2.1)上。
如果没有元标记,ajax 调用将按应有的方式运行。
有任何想法吗?
You may try using the below meta tag.
I have successfully used both these meta tags and AJAX calls did work for me on the Nexus One.
<meta name="HandheldFriendly" content="true" />
此外,现在建议您设置 content="width=device-width" 并使用 CSS 设置页面样式,使其看起来至少可以容忍。否则,您会在 iPad 上看到一个可笑的放大页面。
当然,不要介意你是否已经有办法处理它。