我想在jQueryUI Autocomplete
网站上使用Drupal
,然后下载了其运行所需的.js
个文件。在此之后,我将.js
个文件保存在位于/sites/all/themes/advanced/js
的主题文件夹中。在我的page.tpl.php
中有这段代码,
<head>
<?php print $head ?>
<title><?php print $head_title ?></title>
<?php print $styles ?>
<?php print $scripts ?>
<?php print phptemplate_get_scripts(); ?>
<?php if ($user->uid) print phptemplate_get_scripts_advanced(); ?>
<!--[if lt IE 7]>
<?php print phptemplate_get_ie_styles(); ?>
<![endif]-->
</head>
使用上面的代码我假设我的.js
文件将被包含但当我重新加载页面并通过Firebug
检查正在运行的脚本时,我找不到它们。我错过了什么?提前谢谢。
答案 0 :(得分:0)
知道了。我确实尝试将我的脚本手动放在我的template.php
上,这解决了它。 :)