0

我想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,我找不到它们。我错过了什么?提前致谢。

4

1 回答 1

0

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

于 2012-09-14T16:07:11.413 回答