gpt4 book ai didi

java - 如何使用 css 设置迭代器的特定运行样式

转载 作者:太空宇宙 更新时间:2023-11-04 15:37:33 24 4
gpt4 key购买 nike

我在我的一个页面上有这个迭代器有没有一种方法可以设置迭代器的特定运行样式,例如在容器中第一次运行 400 x 200px,下一次在不同的容器中运行大约 200 200 像素?

<s:iterator value="walkthroughs">
<div>
<span>
<s:property default="fail" value="_walkthroughText"/>
</span>
</div>
</s:iterator>

最佳答案

来自iterator tag documentation :

status - If specified, an instanceof IteratorStatus will be pushed into stack upon each iteration

例如:

<s:iterator value="#it.days" status="rowstatus">
<tr>
<s:if test="#rowstatus.odd == true">
<td style="background: grey"><s:property/></td>
</s:if>
<s:else>
<td><s:property/></td>
</s:else>
</tr>
</s:iterator>

Here is the Javadoc of IteratorStatus .

关于java - 如何使用 css 设置迭代器的特定运行样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12603010/

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