我正在尝试使用 php 在 head 标记中回显一个 .js 文件。css 文件工作正常,但 js 文件未包含在内。这是我所拥有的:
echo '<head>';
echo '<link rel="stylesheet" type="text/css" href="systemframe.css"/>';
echo '<script type="text/javascript" src="mainmenu.js"></script>';
echo '</head>';
echo '<form>';
echo '<body>';
...
echo '</body>';
echo '</form>';
我通过手动将它放在 index.html 文件的 head 标签中验证了 js 文件是好的。js 文件与所有其他文件位于同一文件夹中,因此没有文件目录级别。我的目标是通过php动态添加js文件到网站头部。我看到了其他类似的例子,所以我有点困惑为什么它不起作用。