谷歌地理编码API ajax
我使用 jquery 1.6.4,我只是尝试获取与邮政编码相对应的城市,所以我想使用 Google Geocode API。
$(document).ready(function() {
$("#zipcode").keypress(function(){
$.getJSON(
"http://maps.googleapis.com/maps/api/geocode/json",
{
sensor: false,
address: "france"
},
function(data) {
alert(data.status);
}
);
});
});
但它不起作用,firebug 给我一个状态代码 200 但没有结果。 如果我直接向 API 询问,它工作...那么我做错了什么?
I use jquery 1.6.4 and I just try to get city corresponding to a zipcode, so I want to use the Google Geocode API.
$(document).ready(function() {
$("#zipcode").keypress(function(){
$.getJSON(
"http://maps.googleapis.com/maps/api/geocode/json",
{
sensor: false,
address: "france"
},
function(data) {
alert(data.status);
}
);
});
});
But It doesn't work, firebug give me a status code 200 but not result.
If I ask directly to the API, It work... So what I'm doing wrong ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我按照此帖子
我使用 Jquery 和 google 地图类的解决方案
I build my solution by following this post
My solution using Jquery and google maps class