Jquery Mobile 固定标头。将标题保持在顶部
我有一个聊天窗口,使用 jquery mobile 构建。
当用户单击文本框时,将出现虚拟键盘。这会向上推固定页脚,当您单击“完成”时,键盘会向下滑动。标题现在显示在页面中间。
这种行为有解决方法吗?
多谢, 担
I have a chat window, build using jquery mobile.
When the user clicks the text box, the virtual keyboard appears. This pushes up the fixed footer, when you click "done", the keyboard slides down. The header now appears in the middle of the page.
Is there a work around for this behavior?
Thanks a lot,
Dan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是一个预期的方法,但我想您可以在
body
或document 上触发
元素。这应该会导致界面清理。orientationchange
事件或resize
事件[编辑]
这可能值得尝试:
http://jquerymobile.com/demos/1.0a3/#docs /toolbars/bars-fullscreen.html
(这可能与您的应用程序的固定定位一样好,谁知道呢;))
This is NOT an intended way to do that, but I guess you can trigger
orientationchange
event or aresize
event onbody
ordocument
element. This should cause the interface to clean-up.[edit]
This might be worth trying:
http://jquerymobile.com/demos/1.0a3/#docs/toolbars/bars-fullscreen.html
(It might be as good as fixed positioning for your app, who knows ;) )