我正在尝试向 magento cms 添加一些外部 javascript 文件,但不知何故,它们似乎不起作用,尽管它们在 head 部分显示正常。
我将以下代码行添加到head.phtml
<!--pankaj js edition-->
<script src="<?php echo $this->getJsUrl(); ?>jQuery_1205141001.js" type="text/javascript"></script>
<script src="<?php echo $this->getJsUrl(); ?>Common_1205141001.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
当页面被渲染时,它们显示在头部,但似乎没有做他们应该做的工作。
难道我做错了什么。因为这些文件在简单的 html 页面中运行良好。我需要在其他地方添加文件吗?很抱歉打扰,但我是 magento 的新手。