0

这是我的jQuery代码。

  $.ajax({
       url: '/api/LLCReport/GetClientRegionsList',
       async: true,
       success: function (regionList) {
          $("#txtSearchBox").autocomplete(regionList);
       }
  });

regionlist 就像

displaname     path
-------------  ----------
western        region-western
eastern        region-eastern

这里我的问题是自动完成功能不起作用。在搜索条件中,我需要如下所示

 Eastern
    reggion-eastern
 Western
    region-eastern

表示首先显示名称,然后是其路径。

提前致谢

4

1 回答 1

0

如果您使用 jQuery UI,自定义显示开箱即用

于 2012-11-08T06:53:40.910 回答