我正在构建一个基于 Spring MVC 的 webapp,我将在其中使用几个下拉菜单。
我想要完成的是,当用户选择一个可用选项时,该选项的描述将出现在选择标签旁边。
<select name="userType">
<c:forEach items="${userTypes}" var="userType">
<option>${userType.userType}</option>
</c:forEach>
</select><br/><br/>
在此旁边,我想要一个显示类似内容的字段
${userType.description}
对于下拉列表中的每个选项。
最好的方法是什么?
感谢任何花时间帮助我的人。