小编典典

如何在Jsp中添加arraylist

jsp

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
  </head>
  <body>
<%=new Date() %>

<%
ArrayList al = new ArrayList();
al.add("C");
al.add("A");
al.add("E");
al.add("B");
al.add("D");
al.add("F");
%>

    <select>
      <option value="<%=al%>"></option>
    </select>
  </body>
</html>

这是我的代码,我想在Jsp的下拉列表中添加Arraylist,但我不知道如何在html中绑定arraylist或下拉列表,请帮助我,我已经尝试了很多但无法做到这一点。


阅读 920

收藏
2020-06-08

共1个答案

小编典典

已编辑

尝试这个:

<%

ArrayList al = new ArrayList();
al.add("C");
al.add("A");
al.add("E");
al.add("B");
al.add("D");
al.add("F");

%>

<select>
   <%  for(int i = 0; i < al.size(); i++) {
           String option = (String)al.get(i);
   %>
   <option value="<%= option %>"><%= option %></option>
   <% } %>
</select>
</body>
</html>
2020-06-08