index.html で定義されたパネルを別のページ、たとえば resutls.html で使用することは可能ですか? または、すべてのページでパネルを定義し、両方のページに同じ html コードを追加する必要がありますか?
パネルをすべてのページで同じにしたいので。
これはindex.htmlの私のパネルです
<div data-role="page" id="home">
<div data-role="panel" id="mypanel">
<!-- panel content goes here -->
</div>
<!-- /panel -->
<div data-role="header">
<!-- beginning of header -->
<div data-role="navbar" data-id="navbar">
<!-- beginning of presistant navbar, this navbar will be shown in all
pages -->
<ul>
<li> <a href="index.html" data-icon="search" class="ui-btn-active ui-state-persist">Search</a>
</li>
<li> <a href="#mypanel" data-icon="bars">More</a>
</li>
</ul>
</div>
<!-- /navbar -->
</div>
<!-- /header -->
<div data-role="content" id="content">
<!-- content -->
</div>
<!-- /content -->