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.
我在我的 index.html 文件中插入了带有 css 文件的标题。然后我加载第二页
<a href="page2.html">page2</a>
它工作正常,但是当我单击刷新按钮或直接访问子页面时,然后 css 没有加载,所以我必须在每个页面上插入 css 和我需要的所有 js 文件吗?
您可以将标题放在一个文件中,然后将其包含在“html”页面中(使用脚本语言,例如 php)。
header.html:
<head> link to your css and js files </head>
索引.php:
... include_once('header.html'); ...
page2.php: