我有一个包含来自查询的变量的选择列表
<tr>
<td>County Name:</td>
<td>
<select name="countyName" onchange="countyID.value = countyName.value">
<option>Select a County</option>
<cfloop query = "getCounties">
<option value="#countyName#" >#countyName# #countyID#</option>
</cfloop>
</select>
</td>
</tr>
如何填写县 ID 字段?
<tr>
<td>County ID:</td>
<td><input type="Text" name="countyID">
</td>
</tr>
我从来没有使用过 jQuery。有没有办法只使用 JavaScript?如您所见,我尝试了 JavaScript,但是我只能使用 填充countyID
,countyName
并且我需要使用countyID
.