我在我的布局视图中加载了 jQueryui 包,并且查看源代码显示它被引用但“自动完成”没有出现在智能感知中(只有 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"
] });
谢谢