我在布局视图中加载了jQueryui包,并且查看源显示它被引用但是“自动完成”没有出现在intellisense中(只有aria-autocomplete?)
当我尝试运行它时,我在Chrome开发工具中收到此错误:
7
Uncaught TypeError: Object function ( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context, rootjQuery );
} has no method 'curCSS' jquery-ui-1.8.20.js:142
代码:
<input type="text" id="titleSearch" placeholder="Job title e.g ASP.net Developer"/>
$("#titleSearch").autocomplete({ source: [
"C#",
"ASP.NET",
"Java"
] });
由于
答案 0 :(得分:1)
原来我运行的是最新的jQuery(1.8.3)所以我还需要更新我的jQuery ui(1.9.2)