我正在使用 jQuery mobile 在 Phonegap 上编写应用程序
。我在列表视图中有一个固定的标题和一个很长的列表:
<body onload="onBodyLoad()">
<div data-role="page" data-theme="c" id="app">
<!-- Header -->
<div data-role="header" data-position="fixed" data-theme="b">
<h2>header</h2>
</div>
<!-- page conent -->
<div data-role="content" data-theme="d">
<ul id="list" data-role="listview">
<!-- the list is created dynamically -->
</ul>
</div>
</div>
</body>
标题将包含一些操作按钮。
我想在滚动时保持标题固定,并且在不同的设备上有一些奇怪的行为。如何解决固定位置问题?