我在这里可能完全错了,但是有没有办法<cfif>
在下拉列表中使用来动态选择下拉列表的默认值?
我正在执行以下操作:
<select class="field select" id="TimeWithXYZYears" name="TimeWithXYZYears" >
<option value="00" <cfif #thisInstance.responses.TimeWithXYZYears# eq 0>selected="selected"</cfif>>0</option>
<option value="01" <cfif #thisInstance.responses.TimeWithXYZYears# eq 1>selected="selected"</cfif>>1</option>
<option value="02" <cfif #thisInstance.responses.TimeWithXYZYears# eq 2>selected="selected"</cfif>>2</option>
<option value="03" <cfif #thisInstance.responses.TimeWithXYZYears# eq 3>selected="selected"</cfif>>3</option>
.
.
.
</select>
我已经TimeWithXYZYears
从页面前面调用的组件方法中获取了值,我尝试将它转储到页面上,它给了我正确的值。
有没有办法在不编写另一个函数的情况下做到这一点?