我想使用 jqm 和 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 制作的应用程序示例,其标题不会在每个页面的更改时重新加载。
你能帮助我吗?