2
我有一個名爲names.json的json,我需要做一個自動完成的輸入,在json中尋找'name'值。jQuery與getJSON自動完成
我該怎麼做?
我想:
$(function() {
var getData = function (request, response) {
$.getJSON(
"/cities.json" + request.term,
function (data) {
response(data);
});
};
var selectItem = function (event, ui) {
$("#myInput").val(ui.item.value);
return false;
}
$("#myInput").autocomplete({
source: getData,
select: selectItem,
minLength: 2,
change: function() {
$("#myInput").val("").css("display", 2);
}
});
});
但是我做錯事在我的代碼。
我從一個外部文件
JSON正是從這個格式的JSON,我需要當我在輸入類型返回「名稱」的值:
[
{
"id":25,
"name":"locale name test 2",
"state_id":6
},
{
"id":667,
"name":"locale name test 3",
"state_id":24
},
{
"id":331,
"name":"locale name test 4",
"state_id":13
},
{
"id":776,
"name":"locale name test 5",
"state_id":26
},
{
"id":680,
"name":"locale name test 6",
"state_id":26
}
]
謝謝@dawit!我如何從外部網址獲取json? 使用$ .getJSON? – CodeG
@CodeG檢查我的新更新。讓我知道你是否有顧慮 – dawit