0
這是我的jQuery代碼。使用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
意味着顯示名稱首先,其路徑遵循。
在此先感謝
查看此的http://jqueryui.com/autocomplete/#categories – Hkachhia