通过输入 zip 自动填充城市文本字段,反之亦然
我已经看到这个问题已经发布了几次,但没有足够具体的内容供我使用。
我有一个表单(在 .php 文件中),带有邮政编码和城市文本字段。我还有一个单独的数据库,其中包含我所在国家/地区的所有邮政编码和城市。 (邮政编码在第 1 列,城市在第 2 列)
我想要的是,每当用户输入城市或邮政编码时,其他字段都会根据数据库自动更新/填充。
我尝试过寻找 jquery/ajax 解决方案,但我还没有找到。
I've seen that this question has been posted a couple of times but nothing specific enough for me to use.
I have a form (In a .php file), with a Zipcode and City textfield. I also have a seperate database which holds all zipcodes and cities for my country. (Zipcode in column 1 and city in column 2)
What i would like is that whenever a user inputs either city or zipcode the other field updates/populates automatically based on the database.
I've tried looking for a jquery / ajax solution, but i haven't found one yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AJAX 可以解决这个问题。您可以尝试这样的操作: 链接。
我建议您使用 jQuery,它的 AJAX 代码比您自己编写的代码干净得多。
AJAX can do the trick. You may try something like this: LINK.
I suggest you to use jQuery, it's much cleaner code for AJAX than coding it yourself.