0

在移动网站中是我的页脚在固定位置,

但是每次当我在表单(输入字段)上单击 Iphone 4 时,我的 Iphone 键盘都会打开,并且我的页脚在这段时间内没有固定。关闭键盘时一切正常。

只有当我的键盘打开时,页脚才能随内容滚动,我不知道为什么?

这是我的CSS代码

.bgfooter{
left: 0;
position: fixed!important;
right: 0;
top: 0!important;
width: 100%;
z-index: -1!important;
bottom: 0;

background:url('../images/background.png') no-repeat 0 0 !important;

}

我的html代码

...  
<div data-role="content">....</div>             
<div class="bgfooter" data-position="fixed"  data-role="footer" >.... </div>
4

1 回答 1

0

对此有一个错误:

https://github.com/jquery/jquery-mobile/issues/3072

我已经重新编码了我的应用程序以避免 jQueryMobile 中的固定页脚。当 1.1 final 版本发布时,情况可能会发生变化。

于 2012-04-14T18:11:35.490 回答