根据 IP 地址更新州和邮政编码

发布于 2024-11-07 03:02:02 字数 58 浏览 1 评论 0原文

我有一个用户输入邮政编码的字段。根据输入的值,我想填充城市和州。我如何在 jQuery 中做到这一点?

I have a field where user inputs Zip code. Based on the value entered I want to populate city and state. How i can do this in jQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南渊 2024-11-14 03:02:02

您可以使用 Google 的地图/地理编码 API,这里有一个快速演示:

<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
    alert(google.loader.ClientLocation.address.city);
</script>

http://jsfiddle.net/zwPvs/1 /

编辑:由于用户直接与 Google 的服务器通信,因此您甚至不必传递 IP 地址,他们会计算出来。他们甚至可能使用 IP 地址之外的一些额外数据点,但不确定。

You can use Google's Map / Geocoding API, here is a quick demo:

<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
    alert(google.loader.ClientLocation.address.city);
</script>

http://jsfiddle.net/zwPvs/1/

edit: Since the user is communicating directly with Google's servers, you don't even have to pass in an IP address, they figure it out. They may even use some additional points of data beyond IP address, but not sure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文