<html:select property="branchCombo" value="" name="selectBranchId">
<c:forEach var="record" items="${branchList}">
<option value="${record.id}">
${record.code} - ${record.name}
</option>
</c:forEach>
</html:select>
如何从id
的所选值中获取<html:select>
?