在我的自定义模板中,没有任何对jquery的引用。但仍然在head标签下的源代码joomla正在加载
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js" type="text/javascript"></script>
我只是想知道它在哪里加载?我检查了head.php,但它没有指向任何jQuery库。我在哪里可以将其更改为指向jquery-1.9.js。 Head还加载了一些其他的javascript文件,但我认为这些是Joomlas要加载的一些标准。在管理面板中有哪些地方我可以更改这些,因为在代码中我找不到合适的地方或方式。
的index.php:
<head>
<jdoc:include type="head" />
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/template.css" rel="stylesheet" type="text/css" />
</head>
谢谢!