我想用jqm和Phonegap製作一個新的移動應用程序;我不明白如何獲得一個固定的標題,而不是在每次頁面更改時重新創建。jQuery Mobile,Phonegap和持久性標頭
這是jqm用於ajax調用的經典代碼;但在每種情況下,標題都會重新加載。
<!-- Start of first page -->
<div data-role="header">
<h1>First</h1>
</div><!-- /header -->
<div data-role="content">
<p>The content</p>
<p>View internal page called <a href="#second">second</a></p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
<div data-role="header">
<h1>Second</h1>
</div><!-- /header -->
<div data-role="content">
<p>I'm the second content</p>
<p><a href="#first">Back to first</a></p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
我不喜歡過渡效果;我只想修改標題(與原生應用程序相似)。
我看到一些使用Phonegap製作的應用程序示例,其中的標題不會在每個頁面的更改時重新加載。
你能幫我嗎?
謝謝迪瑪!我忘記了我的頁面上的數據ID :-) – Henry8