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