0
我想從jQuery的自動完成中獲取選定的值,出於某種原因我無法獲得ID。我在這裏看到了一個解決方案http://www.codeproject.com/Articles/152558/jQuery-UI-Autocomplete-with-ID,但是我的數據像下面那樣返回我應該如何得到id保存?Jquery自動完成選定的ID沒有得到保存
我的數據
[{"id":3,"homename":"DCosta"}]
我的代碼
$("#lastname").autocomplete({
source: function (request, response) {
var term = request.term;
if (term in cache) {
response(cache[term]);
return;
}
$.ajax({
type: 'POST',
url: someurl,
dataType: 'json',
data: { "Name": request.term},
success: function (result) {
var Surnames = JSON.parse(result.data);
cache[term] = ($.map(Surnames, function (item) {
return {
label: item.homename,
//value: item.id //<== if I do like this the id show in the text box which I do now want
value: item.homename //<== this shows correctly but the id is not accessable
}
}));
response(cache[term]);
},
error: function (a, b, c) {
debugger;
}
});
},
select: function (event, ui) {
self.Surname(ui.item.value); // save selected value
console.log(self.Surname()); // shows ID if value: item.id or just the name
},
minLength: 2
});
現在我添加這個值:item.id文本框顯示了id。我也加了$('#lastname')。val(ui.item.label);並假定它會在文本框中顯示標籤值,但沒有任何反應。添加這個myhiddenid.val(ui.item.value);給undefined – Adrian
你在屏幕上創建了一個隱藏的輸入嗎? ('') – ethorn10
啊錯過了,會嘗試讓你知道 – Adrian