jqueryを使用して(ajaxを使用せずに)、Google APIの郵便番号から市と州の名前を取得する方法はありますか。
詳細はこちらからhttp://maps.googleapis.com/maps/api/geocode/json?address=17078&sensor=true
。
そして私のコードは
var googleAPI = "http://maps.googleapis.com/maps/api/geocode/json?address=17078&sensor=true";
$.getJSON(googleAPI, function (response) {
console.log("JSON Data: " + response.items);
for (var i = 0; i < response.items.length; i++) {
var item = response.items[i];
// in production code, item.text should have the HTML entities escaped.
//document.getElementById("content").innerHTML += "<br>" + item.volumeInfo.title;
alert(item.address_components);
}
});
しかし、これは機能していません