MVC4中的jquery自动完成 - 被引用但不起作用或出现在intellisense中

时间:2013-01-05 00:26:48

标签: jquery asp.net-mvc jquery-ui asp.net-mvc-4

我在布局视图中加载了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"
        ] });

由于

1 个答案:

答案 0 :(得分:1)

原来我运行的是最新的jQuery(1.8.3)所以我还需要更新我的jQuery ui(1.9.2)