2

我有 Web 应用程序,其中有国家的下拉列表以及州/省/地区的下拉列表。

如果我选择国家,则应动态填充其相关的州\省\地区。

人口是容易的事情。

但是随着国际化,我们应该如何以及在哪里维护这些庞大的数据

4

1 回答 1

3
step 1 : create data base for country names and related state names
step 2 : make ajax call on select box for country on onchange event
step 3 : the ajax call hits the db and return with the state names
step 4 : set the value for state select box with the received response from ajax call
于 2013-03-13T06:08:53.900 回答