将自定义JavaScript添加到Joomla!模板

时间:2018-07-13 16:44:47

标签: javascript joomla

我正在Joomla中工作!模板并想知道:如果文件位于模板的根文件夹中的文件夹内,为什么站点中的javascript无法正常工作?为什么仅在javascript文件位于模板的根文件夹上时有效?

这是当文件位于文件夹中时我在index.php上声明javascript的时候:

<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/js/main.js" type="text/javascript"></script>

这是当文件位于根文件夹上时我在index.php上声明javascript的情况:

<script src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template;?>/main.js" type="text/javascript"></script>

1 个答案:

答案 0 :(得分:0)

这很可能是由于自定义.htaccess引起的,它可能在另一个文件夹中时阻止文件。当您直接在浏览器中访问js文件时会发生什么?它能解决吗?