在我的Drupal站点上包含.js文件

时间:2012-09-14 15:09:11

标签: jquery-ui drupal-6

我想在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检查正在运行的脚本时,我找不到它们。我错过了什么?提前谢谢。

1 个答案:

答案 0 :(得分:0)

知道了。我确实尝试将我的脚本手动放在我的template.php上,这解决了它。 :)