在开发我的一个 html 应用程序时,我的主 html 文件变长了。有没有办法将我的代码拆分为单独的模块并将它们合并到我的主 html 页面中。请不要建议 iframe。我不想让它成为单独的页面(带有另一个 HTML 和 Body 标签)。
我的设计是这样的。
当前的:
索引.html
<html>
    <body>
       <div id="sidebar">
          ..........
       </div>
       <div id="content-top">
         <div id="ct-list">
            ...........
         </div>
            ...........
       </div>
       <div id="content-bottom">
            ............
       </div>
    </body>
</html>
我期待什么
索引.html
<html>
    <body>
        <Module src="sidebar.html">
        <Module src="content-top.html">
        <Module src="content-bottom.html">     
    </body>
</html>
边栏.html
<div id="sidebar">
    ..........
</div>
内容-top.html
<div id="content-top">
    <Module src="ct-list.html"> 
    ...........
</div>
ct-list.html
<div id="ct-list">
    ...........
</div>
内容-bottom.html
<div id="content-bottom">
    ............
</div>