这是我的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
表示首先显示名称,然后是其路径。
提前致谢