浏览 4994 次
锁定老帖子 主题:Struts2标签显示列表
该帖已经被评为隐藏帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-03-18
<ww:iterator value="peopleList" status="stat"> <s:property value="peopleList[#stat.index].id" /> <s:property value="peopleList[#stat.index].name" /> <s:property value="peopleList[#stat.index].age" /> <s:property value="peopleList[#stat.index].height"/> </ww:iterator> 修改的表单: <s:form action="update" method="post" > <s:iterator value="peopleList" status="stat"> <s:hidden name="peopleList[%{#stat.index}].id" value="%{peopleList[#stat.index].id}"/> <s:textfield label="Name" name="peopleList[%{#stat.index}].name" value="%{peopleList[#stat.index].name}"/> <s:textfield label="Age" name="peopleList[%{#stat.index}].age" value="%{peopleList[#stat.index].age}" /> <s:textfield label="Height" name="peopleList[%{#stat.index}].height" value="%{peopleList[#stat.index].height}"/> <br/> </s:iterator> <s:submit value="Update"/> </s:form> 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |