首页 > 代码库 > struts2标签用法随笔

struts2标签用法随笔

1、s:textfield的label可以设置显示的文字,但是不能嵌套调用s:property,这样可以解决

<s:textfield name="name" ><s:property value="http://www.mamicode.com/#st.index+1"/></s:textfield>

2、s:iterator 遍历的序号

<s:iterator value="http://www.mamicode.com/type.subs" status="st">
<s:textfield name="name" ><s:property value="http://www.mamicode.com/#st.index+1"/></s:textfield>
</s:iterator>

Done