本文介绍了输入邮政编码后,应自动显示城市和州的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有三个文本字段,邮政编码,城市和州.输入邮政编码后,应自动在texboxs中自动填写城市和州.
i have three text fields, zip,city and state.Once the zip code is entered, then automatically the city and state should be auto-filled in the texboxes.
<label>ZipCode</label>@Html.TextBoxFor(x => x.Zipcode)
<label>City</label>@Html.TextBoxFor(x => x.City)
<label>State</label>@Html.TextBoxFor(x => x.State)
我该怎么做,任何人都可以帮忙
how can i do this, can anyone help
推荐答案
这篇关于输入邮政编码后,应自动显示城市和州的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!