gpt4 book ai didi

jquery - TypeError : $(. ..).autocomplete 不是一个函数

转载 作者:行者123 更新时间:2023-12-03 21:35:24 31 4
gpt4 key购买 nike

Drupal 模块中使用以下代码时,我收到错误 TypeError: $(...).autocomplete is not a function

jQuery(document).ready(function($) {
$("#search_text").autocomplete({
source:results,
minLength:2,
position: { offset:'-30 0' },
select: function(event, ui ) {
goTo(ui.item.value);
return false;
}
});
});

jQuery 肯定已加载,并且我尝试对 $ 使用不同的变量 - 你知道还有什么问题吗?

(编辑)Drupal 自动完成的具体答案:

drupal_add_library('system', 'ui.autocomplete');

最佳答案

你错过了 jquery ui 库。使用 Jquery UI 的 CDN,或者如果您想要在本地使用,则从 Jquery Ui 下载文件

<link href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" rel="Stylesheet">
<script src="YourJquery source path"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js" ></script>

关于jquery - TypeError : $(. ..).autocomplete 不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16300586/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com