我有一个表单,其中所有字段都是动态的,来自数据库。我有问题/答案的形式。我想要做的是,如果问题3的单选按钮为“是”,则在下拉问题上显示一个数字(例如:5)。我试图这样做而不提交表格,是ajax唯一的方法吗? 这是代码:
<input type="radio" name="YesNo_#Questions.QId#" id="YesNo_#Questions.QId##" value="1"/> Yes
<input type="radio" name="YesNo_#Questions.QId#" id="YesNo_#Questions.QId#" value="0"/> No
<label class="columnDescription"></label>
<select name="NumericResponse_#QId#">
<option value="">Please select</option>
<cfloop from="1" to="5" index="i">
<option>#i#</option>
</cfloop>
</select>