Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网站,我希望在每个页面中都有一致的样式(标题和侧边菜单)。
我想为它创建类似于母版页的东西。我不想使用框架。
我如何使用 HTML、CSS、JavaScript 和 jQuery 来实现这一点?
您可以使用 jQuery Load 函数来包含标题或菜单 html 页面,例如,包含一个常见的标题 html 文件,
<div id="new-header"> <script> $("#new-header").load("header.html"); </script> </div>