设置变量
<s:set name="maxRowIndex" value="%{formInfo.maxRowIndex}"/>
for 循环
<s:bean name="org.apache.struts2.util.Counter" id="counter">
<s:param name="first" value="0" />
<s:param name="last" value="#maxRowIndex" />
<s:iterator>
</s:iterator>
</s:bean>
迭代<s:iterator>用于将List、Map、ArrayList等集合进行循环遍历
<s:iterator value="#rowList">
</s:iterator>
if语句
<s:if test="#rowList==null">
</s:if>
生成html代码
<s:property value="%{formInfo.jsCode}" escape="false"/>
escape="false" 不进行转义