以下代码对城市执行自动完成,然后选择关联的状态。如果我遵循 Id: City and State 的约定,效果会很好。我遇到的情况是,我在具有不同 ID 的页面上有多个城市/州控件。
有人可以帮我将此代码重构为更通用吗?
谢谢
$("#City").autocomplete({
source: function (request, response) {
$.ajax({
url: "http://ws.geonames.org/searchJSON?country=US",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
},
success: function (data) {
response($.map(data.geonames, function (item) {
return {
label: item.name + (item.adminName1 ? ", " + item.adminName1 : ""),
value: item.name,
code: item.adminCode1
}
}));
}
});
},
minLength: 2,
select: function (event, ui) {
$("#State").val(ui.item.code);
}
});