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.
我有几个使用 cfselect 的下拉菜单,例如城市和国家。我想知道如何确定所选值并将变量设置为这些值以在另一个 cfform 中使用。
谢谢。
Form1.cfm
<cfselect name="city"> <cfselect name="country">
将表单提交到 form2.cfm 后,城市和国家/地区在表单范围内可用,并包含用户选择的选项。与 HTML 表单没有什么不同?
Form2.cfm
<cfinput name="chosenCity" value="#form.city#"> <cfinput name="chosenCountry" value="#form.country#">