gpt4 book ai didi

javascript - Jquery Ui 自动完成仅从一个国家获取城市

转载 作者:行者123 更新时间:2023-11-30 12:53:31 25 4
gpt4 key购买 nike

Please visit my fiddle 1st

我在那里使用 jquery Ui 自动完成功能,我希望下拉列表仅显示(触发)来自一个国家(如孟加拉国)的城市。我怎样才能得到它?

这是 JavaScript 方法:

$(function() {
$( ".city" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "http://ws.geonames.org/searchJSON",
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 : "") + ", " + item.countryName,
value: item.name
}
}));
}
});
}
});
});

谢谢。

最佳答案

您需要在网址中传递国家代码。例如` http://ws.geonames.org/searchJSON?&country=BD '

Demo Fiddle

更新的 js:

$(function() {
$( ".city" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "http://ws.geonames.org/searchJSON?&country=BD",
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 : "") + ", " + item.countryName,
value: item.name
}
}));
}
});
}
});
});

关于javascript - Jquery Ui 自动完成仅从一个国家获取城市,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20121226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com