gpt4 book ai didi

css - 如何在循环中动态更改div类

转载 作者:太空宇宙 更新时间:2023-11-04 12:28:38 25 4
gpt4 key购买 nike

我正在使用 Spring4 和 JSTL。下面显示的图像包含在 JSP 页面中动态创建的元素。

enter image description here

jsp页面中的代码

<c:forEach var="themes" items="${Itemlist}">
<div class="col-lg-3 col-xs-6">
<!-- small box -->


<div id="style" class="small-box bg-green" >


<!--div contents -->


</div>
</div>
</c:forEach>

我需要动态改变 id="style"类的 div

小盒子背景色-红色

小盒子背景色-蓝色

小盒子 bg-绿色

small-box bg-yellow ,all can change the box color.我如何动态应用它。

请帮忙。

最佳答案

使用<c:if> 即可轻松解决问题和 varStatus .

<c:forEach var="themes" items="${Itemlist}" varStatus="status">
<div class="col-lg-3 col-xs-6">

<c:set var="color" value="green"/>

<c:if test="${status.index == 1}">
<c:set var="color" value="red"/>
</c:if>
...
<div id="style" class="small-box ${color}" ></div>
</div>
</c:forEach>

关于css - 如何在循环中动态更改div类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27840068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com