我正在用 HTML5 制作一个简单的静态应用程序。
我现在正在做的是我有一个长页面,其中有数千行代码。
我目前这样做是为了转到另一个页面:
<div data-role="content">
<label for="heading">History</label>
<a href="#module_a" data-role="button" data-icon="arrow-r" data-iconpos="right" data-transition="flip">History</a>
<a href="module_b" data-role="button" data-icon="arrow-r" data-iconpos="right">Remote Control</a>
</div>
...然后我有 module_a 和 module_b 如下...
<div id="module_a" data-role="page">
//content
</div>
...对于 module_b 也是如此
两个 div 都在同一页面中,所以我的页面看起来很糟糕。
我想要的是我需要相同的功能,但我不希望我的 div 是 module_a 和 module_b 在同一页面中。
我想为此创建不同的页面,然后加载它,以便我的主页看起来清晰。