如何更改我的jQuery自動完成以使用Id而不是我的值? 我想顯示名稱列表,但使用Id值發送搜索。現在它可以正確地處理名稱,但是如果它試圖找到一個唯一的ID作爲ID,它會更有效。Jquery自動完成顯示名稱併發送Id
$.getJSON('Dashboard/CompaniesWithId', function (data) {
$.each(data, function (i, item) {
sellers[i] = item.Name;
sellersID[i] = item.Id;
});
}).error(function() {
console.log("error loading seller to the autocomplete");
});
$("#searchSeller").autocomplete({
messages: {
noResults: 'No sellers with this name',
},
minLength: 2,
delay: 500,
source: sellers,
});