我已在我的一个项目中使用以下代码成功将 css 和 js 连接到 zendframework ,但这个完全相同的代码不起作用在我的其他项目中。 CSS和JS文件位于正确的目录中。我在这个框架中编写了差不多一年的代码。所以我不知道我在哪弄乱它
JS
<?php echo $this->headScript()
->prependFile($this->basePath('js/jquery.min.js')) ?>
CSS
<?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'))
->prependStylesheet($this->basePath('css/jquery.mCustomScrollbar.min.css'))
在layout.phtml
中发生的css和js文件的这种连接这应该是这样的:
这就是它现在的样子