我正在使用 ColdFusion 创建一个注册表单。其中一项要求是用户从下拉列表中选择一个值。When one of the option is selected, the next textbox field need to be fill in so this field becomes required field. 如果用户没有从下拉列表中选择任何选项,则此 texfield 可以留空。我不擅长 Javascript,有没有办法获得一些免费样品?这是我的表单字段:
<cfselect name="OtherContact" class="inputSelect">
<option value="">--- Select other contact ---</option>
<option value="HomePhone">Home Phone</option>
<option value="HomeFax">Home Fax</option>
<option value="HomeEmail">Home Email</option>
</cfselect>
<cfinput type="text" name="OtherContactId" value="#Form.OtherContactId#" class="inputText">