我想知道如何从 JSP 中读取 DropDown 列表值。下面是我的 JSP 的代码。
<fieldset>
<s:form theme="simple" enctype="multipart/form-data" name="uploadDocument" method="POST" action="?">
<table>
<tr>
<td wrap>Select The Type of Letter to Upload:</td><td><s:select id="letters" list="letterList" name="ListofLetters" headerKey="-1" headerValue="--Select The Letter Type--"/></td>
<tr>
<td nowrap ><s:file name="userFile" label="userFile" size="25" id="upload" /></td>
<td class="button-blue"><s:submit action="Upload" value="Attach File" onclick=" return validateFile()"/></td>
</tr>
</table>
</s:form>
</fieldset>
从数据库动态填充列表的位置。我想知道如何获取 Dropdownlist 值而不是键。因为当我使用
document.getElementById('letters').value
它返回我的键值,如“0,1,2 等”我怎样才能获得与单个键关联的值,以便我可以执行正确的检查。提前致谢 :)