jQuery AutoComplete没有显示

时间:2010-09-14 16:23:04

标签: jquery jquery-ui asp.net-mvc-2 autocomplete jquery-ui-autocomplete

在jquery对话框中,我想使用jqueryUI的jquery自动完成功能。

然后我在我的Controller(我正在使用ASP.NET MVC2)中准备了一个动作,如下所示

public ActionResult GetForos(string startsWith, int pageSize)
{
    // get records from underlying store
    int totalCount = 0;
    string whereClause = "Foro Like '" + startsWith + "%'";
    List<Foro> allForos = _svc.GetPaged(whereClause, "Foro", 0, pageSize, out totalCount);

    //transform records in form of Json data
    List<ForoModelWS> foros = new List<ForoModelWS>();
    foreach ( Foro f in allForos)
        foros.Add( new ForoModelWS() { id= Convert.ToString(f.ForoId), 
            text= f.Foro + ", Sezione: " + f.Sezione + ", " + f.AuthorityIdSource.Name });

    return Json(foros);
}

ForoModelWS类是一个简单类,仅用于保存应在json中传输的数据。这是

public class ForoModelWS
{
    public string id;
    public string text;
}

在客户端,我有以下jquery代码:

<input id="theForo" />

<script type="text/javascript">
    $(document).ready(function() {

        $("#theForo").autocomplete({
            source: function(request, response) {
                $.ajax({
                    type: "post",
                    url: "/Foro/GetForos",
                    dataType: "json",
                    data: {
                        startsWith: request.term,
                        pageSize: 15
                    },
                    success: function(data) {
                        response($.map(data, function(item) {
                            return {
                                label: item.text,
                                value: item.text
                            }
                        }))
                    }
                })
            },
            minLength: 2,
            select: function(event, ui) {
            },
            open: function() {
                $(this).removeClass("ui-corner-all").addClass("ui-corner-top");
            },
            close: function() {
                $(this).removeClass("ui-corner-top").addClass("ui-corner-all");
            }
        });

    });
</script>

但是没有出现带有suggeestions的滑动窗口。如果我在响应函数内部发出警报,我可以看到正确的数据。

我错过了什么吗?

感谢您的帮助

第一次编辑: 此外,如何更改代码以使用返回列表中所选元素的“id”属性?

第二次编辑: 我已经使用Chrome开发人员工具查看了更多内容,并且我看到当自动填充功能启动时会出现一些错误。以下内容:

Uncaught TypeError: Cannot call method 'zIndex' of undefined  @ _assets/js/jquery-ui-1.8.4.custom.min.js:317
Uncaught TypeError: Cannot read property 'element' of undefined @ _assets/js/jquery-ui-1.8.4.custom.min.js:321
Uncaught TypeError: Cannot read property 'element' of undefined @ _assets/js/jquery-ui-1.8.4.custom.min.js:320

似乎自动完成插件在尝试将滑动建议的z-Index设置为其容器的1级时找不到元素。 jquery UI对话框打开时出现第一个错误。自动完成的输入位于jquery对话框内的jquery选项卡

第3次编辑: 我正在添加HTML标记以完成

<td width="40%">
   <%= Html.LabelFor(model => model.ForoID)%>
   <br />
   <%= Html.HiddenFor(model => model.ForoID) %>
   <input id="theForo" />
   <%= Html.ValidationMessageFor(model => model.ForoID, "*")%>
</td>

5 个答案:

答案 0 :(得分:6)

我发现了这个问题。

在我的情况下,我还使用了另一个插件this one

该插件包含在我的脚本末尾,导致问题中描述的错误。我删除了插件,一切都很好。

在删除它之前,我还试图隔离问题,将两个脚本放入静态html中。我经历过即使是最简单的自动完成功能,例如

<script type="text/javascript">
$(document).ready(function() {

    var availableTags = ["ActionScript", "AppleScript", "Asp", "BASIC", "C", "C++", "Clojure",
    "COBOL", "ColdFusion", "Erlang", "Fortran", "Groovy", "Haskell", "Java", "JavaScript",
    "Lisp", "Perl", "PHP", "Python", "Ruby", "Scala", "Scheme"];

    $("#theForo").autocomplete({
        source: availableTags
    });
});
</script>

会导致我得到的错误。

我的选择是删除菜单插件,因为该代码不再受支持。

谢谢!

答案 1 :(得分:5)

这个讨论真的很旧,但是在这里添加它以防它有助于某人...如果自动完成功能根本不起作用,因为在下拉列表中没有显示,那么首先用硬盘检查最简单的形式编码建议如下。

$("#txtLanguage").autocomplete({ source: ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"] });

如果这不起作用那么它是链接jquery脚本的问题。在我的例子中,jquery.min.js是旧版本1.7.1,而所有其他脚本都是1.8.18。

只需更换正确版本的脚本即可解决问题。

希望这有助于某些人遇到使自动完成工作的基本问题。

答案 2 :(得分:2)

就像我回答 here 一样,在我的jQuery UI自动完成工作示例中获取一个战利品。请注意source部分。希望它有所帮助:

    var cache = {};
    $("#textbox").autocomplete({
      source: function(request, response) {
       if (request.term in cache) {
        response($.map(cache[request.term].d, function(item) {
         return { value: item.value, id: item.id }
        }))
        return;
       }
       $.ajax({
        url: "/Services/AutoCompleteService.asmx/GetEmployees",  /* I use a web service */
        data: "{ 'term': '" + request.term + "' }",
        dataType: "json",
        type: "POST",
        contentType: "application/json; charset=utf-8",
        dataFilter: function(data) { return data; },
        success: function(data) {
         cache[request.term] = data;
         response($.map(data.d, function(item) {
          return {
           value: item.value,
           id: item.id
          }
         }))
        },
        error: HandleAjaxError  // custom method
       });
      },
      minLength: 3,
      select: function(event, ui) {
       if (ui.item) {
        formatAutoComplete(ui.item);   // custom method
       }
      }
     });

如果您现在还没有这样做,请 Firebug 。它是Web开发的宝贵工具。您可以在此JavaScript上设置断点,看看会发生什么。

答案 3 :(得分:1)

fgmenu使用功能菜单()和自动完成功能

函数名称出现同样的问题

您可以在fgmenu.js

中更改功能名称
  $('#hierarchybreadcrumb6').menuA({content: $('#hierarchybreadcrumb6').next().html(),backLink: false});

答案 4 :(得分:0)

根据洛伦佐的回答我修改了

$.fn.fgmenu = function(options) { ... 

$.fn.fgmenu = function(options) { ...    

来自此插件menu,它运行正常(自动完成和菜单插件)