我能够实现面板。但我需要我的页面应该显示面板。实际上,当我单击面板按钮时,它会隐藏面板。在整个屏幕上显示页面。但我需要显示带有面板的页面。
这是我的代码。 http://jsfiddle.net/ravi1989/TXRjk/2/
跳转到第二页 跳转到第三页第一页
下一个打开面板<div data-role="page" id="second">
<div data-role="panel" id="mypanel">
<a href="#index" data-role="button">Jump to first page</a>
<a href="#third" data-role="button">Jump to third page</a>
</div>
<div data-theme="a" data-role="header">
<h3>
Second Page
</h3>
<a href="#index" class="ui-btn-left">Back</a>
</div>
<div data-role="content">
<a data-role="button" id="open-panel">Open Pannel</a>
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
</div>
</div>
<div data-role="page" id="third">
<div data-role="panel" id="mypanel">
<a href="#index" data-role="button">Jump to first page</a>
<a href="#second" data-role="button">Jump to second page</a>
</div>
<div data-theme="a" data-role="header">
<h3>
Third Page
</h3>
<a href="#index" class="ui-btn-left">Back</a>
</div>
<div data-role="content">
<a data-role="button" id="open-panel">Open Pannel</a>
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
</div>
</div>