如何从arraylist中获取元素并将其设置为类(HTML标记)名称?

时间:2017-06-12 13:21:38

标签: java html jsp arraylist

我在jsp页面中导入了一个arraylist。现在我想获取arraylist的元素并将其设置为html标记类。

<div class="<arraylist_item>">
    <select name="doctype" class="my_dropdown" style="color:white; background:#655D78">
        <option disabled="disabled" selected="selected">Select Doc Type</option>

        </select>
</div>

我不确定如何从这里开始。任何形式的帮助都是适用的。提前谢谢。

1 个答案:

答案 0 :(得分:0)

如果需要特定数组列表元素中的项目,请使用JSP表达式语言,例如: <div class="${array.get(specific_index).toString()}"/>

如果您需要迭代数组列表并为列表的每个元素创建元素,则可以使用JSTL中的 forEach 标记。 e.g。

<c:forEach var="item" items="${array}">
    <div class="${item.toString()}"/>
</c:forEach>

JSTL tutorial