javascript – jQuery Autocomplete(1.8.5) – 未捕获TypeError,属性’source’不是一个函数

前端之家收集整理的这篇文章主要介绍了javascript – jQuery Autocomplete(1.8.5) – 未捕获TypeError,属性’source’不是一个函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用我以前在早期版本的jQuery上使用的jQuery自动完成小部件.

使用我目前使用的代码(和jQuery UI 1.8.5)当在初始化的自动填充输入字段中键入字母时,我收到以下错误

jquery-ui-1.8.5.custom.min.js:320Uncaught TypeError: Property 'source' of object #<an Object> is not a function

自动完成代码基本上是jQuery示例文档(添加到我的页面与其他JS上):

<input type="text" id="example" />
<script type="text/javascript">
    var data = "Core Selectors Attributes Traversing Manipulation CSS Events Effects Ajax Utilities".split(" ");
    $("#example").autocomplete(data);
</script>

有人有什么建议吗?

提前致谢.

解决方法

我认为应该是:
$("#example").autocomplete({ source: data });
原文链接:https://www.f2er.com/jquery/154739.html

猜你在找的jQuery相关文章