我正在尝试使用 jquery ui 自动完成功能,当您在具有自动完成功能的输入字段中键入内容时,仍然出现以下错误:
Uncaught TypeError: Cannot read property 'PAGE_UP' of undefined
我在我的页面上包含了以下文件:
- jquery-1.7.2.min.js
- jquery-ui-1.8.21.custom.min.js
- jquery-ui-1.8.21.custom.css
这是使用自动完成的代码:
$('input#searchFor').autocomplete({
source:function(req,add){
$.getJSON("/index.php/search/autoCompleteHandler?q=?§ion="+$('input#searchFor').attr("searchDesc"),req,function(data){
var suggestions = [];
$.each(data,function(i,val){
suggestions.push(val.name);
});
add(suggestions);
});
}
});
我不知道可能出了什么问题。任何帮助,将不胜感激。