我使用jquerymobile爲android phonegap應用程序。我想創建一個粘貼到屏幕底部的頁腳(所以它始終顯示),即使您必須在頁面上滾動。現在這是工作的一半。當我在模擬器滾動測試下來一個頁面上,點擊屏幕上(用鼠標)頭跳起來(看一個例子:http://tinyurl.com/pdv6nlp和http://tinyurl.com/p6xycr9Jquerymobile頁腳移動
我的代碼是非常基本的:
<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>
有人可以幫助我
點擊'$($。mobile.activePage).trigger('updatelayout');'嘗試此修復。 – Omar
你是說在標題的某個地方?當我將它放置在標題中時,這不是任何內容: – user2483081
不,點擊事件。 ('click',function(){上面的代碼});' – Omar