I have 1 goal which is to DISPLAY DATA from DATABASE in one SINGLE DROPDOWN LIST.
我有一个目标是在一个单一下拉列表中显示来自数据库的数据。
Right now in my database there are 3 data. I am able to display in 3 DROPDOWN LISTS which I do not know what. Is there a way to display in one dropdown list instead?
现在在我的数据库中有3个数据。我可以在3 DROPDOWN LISTS中显示,我不知道是什么。有没有办法在一个下拉列表中显示?
Below are my codes.
以下是我的代码。
<c:forEach var="staff" items="${staff}">
<select name="staffId"><option value="${staff.staffId}">${staff.staffName}</option></select>
</c:forEach>
1 个解决方案
#1
0
<select name="staffId">
<c:forEach var="staff" items="${staff}">
<option value="${staff.staffId}">${staff.staffName}</option>
</c:forEach>
</select>
#1
0
<select name="staffId">
<c:forEach var="staff" items="${staff}">
<option value="${staff.staffId}">${staff.staffName}</option>
</c:forEach>
</select>