我将 jquerymobile 用于 android phonegap 应用程序。我想创建一个贴在屏幕底部的页脚(因此它一直显示),即使您必须在页面上滚动。现在这是工作的一半。当我在模拟器中测试它时,在页面上向下滚动并单击屏幕(用鼠标),标题会跳起来(参见示例:http ://tinyurl.com/pdv6nlp和http://tinyurl.com/p6xycr9
我的代码非常基本:
<div data-role="page" id="blog" style="background-image:url(img/bg_hdpi.png); background-repeat:no-repeat; background-position:top center; background-attachment:scroll; background-color:#d7d8d8;">
<div data-role="content">
<div id="contentTXT">
<div id="outputblog"></div>
<img src="img/spacer.gif" height="60" width="100">
</div>
</div><!-- /content -->
<div data-role="footer" data-position="fixed" >
<div style="float:left;"><a href="#" onclick="history.back(); return false">back</a></div>
<div style="float:right;"><a href="#foo" data-transition="flip">home</a></div>
</div>
</div>
有人能帮我吗?