我下载 Jquery UI 自动加载,寻找 remote-jsonp.html。这是 ajax 函数,但我打开控制台.. 我在控制台中看不到任何请求...
dataType;"jsonp" 和 dataType;"JSON" 有什么区别
$( "#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
}
}));
}
});
},