Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有国家选择的表格。根据所选国家/地区,应使用新的输入字段扩展表单。
我在 google 上找到的大多数教程都是在填写论坛后提交的 ajax。
有人可以推荐一个关于如何在选择更改时通过 ajax 扩展表单的教程/操作方法吗?
使用这样的东西。当然url, country_data, 和custom_part必须根据您的应用程序处理。并且返回的数据来自您的应用程序,最好没有布局,只有您要添加的部分。
url
country_data
custom_part
$.get("url", country_data, function(returned_data){ $(".custom_part").html(returned_data) })