0

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

谢谢

4

1 回答 1

1

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

于 2013-01-05T08:43:14.920 回答