Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个 PhoneGap 应用程序,它有导航栏和标签栏“实现”为具有固定位置的 div(参见屏幕 1)。
在 iOS6 中,当显示键盘时,这些 div 会出现一些奇怪的行为。当我们输入第一个字母时,div 会消失,而是显示空白区域。当我们关闭键盘时,一切都会恢复正常。
这仅发生在 UIWebView 中,不会发生在 Mobile Safari 中。
有没有人有类似的东西?我想我们不应该孤单。
屏幕截图:
问题是 jQuery mobile 在操作系统向上推视图以保持输入可见的同时从脚本设置页面高度。
一些忽略 jqm 高度变化的 css 为我解决了这个问题。
.ui-mobile, .ui-mobile .ui-page { min-height: 100% !important; }
最后,我们必须对其进行调整并在进入编辑字段时隐藏页脚并将其存储在模糊事件中。不太好,但有帮助。