0

我有一个带有国家选择的表格。根据所选国家/地区,应使用新的输入字段扩展表单。

我在 google 上找到的大多数教程都是在填写论坛后提交的 ajax。

有人可以推荐一个关于如何在选择更改时通过 ajax 扩展表单的教程/操作方法吗?

4

1 回答 1

0

使用这样的东西。当然url, country_data, 和custom_part必须根据您的应用程序处理。并且返回的数据来自您的应用程序,最好没有布局,只有您要添加的部分。

$.get("url", country_data, function(returned_data){ $(".custom_part").html(returned_data) })
于 2012-05-02T16:03:38.267 回答