我试图使用我以前在早期版本的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 });