看看学习Java
http://yanzhigao000.iteye.com/blog/669149
String no=request.getParameter("typeid");取到typeid的值
http://zhidao.baidu.com/question/135263238.html?push=ql
我在一个JSP页面中使用了这个,pageResult.list存了一个对象有三个属性,id,budgetName,createUser,一开始我以为在fieldValue和下面一样直接设置为
fieldValue="id"即可,结果不行,这个是我从网上查来的,为什么这个就能取到id的值呢?"%{id}"怎么解释啊?
<s:iterator value="pageResult.list">
<tr>
<td>
<s:checkbox name="budgetIds" theme="simple" value="false" fieldValue="%{id}"></s:checkbox>
</td>
<td>
<s:property value="budgetName" />
</td>
<td>
<s:property value="createUser" />
</td>
</tr>
</s:iterator>