3 回答
TA贡献1785条经验 获得超8个赞
要想在提交jsp后仍然保留原来的值可以通过以下方法实现:
1、首先在jsp页面上input的property值不能相同,如下:<html:input property="testBox1" value="chargeStat01">测试文本1</html:input >
2、后台Java代码:
public class ChargeStatForm extends ActionForm {
private String testBox;
public String getTestBox() {
return testBox;
}
public void setTestBox(String testBox) {
this.chargeStatChargeItemInput="";
this.testBox = testBox;
}
}
这样就可以让提交之后出现错误信息之后多选框不被置空,而是原先选中什么现在还选中什么的状态。
TA贡献1725条经验 获得超7个赞
你把这个文本框放在表单内,一起提交,在处理方法内获得文本框的值,然后保存在作用域内,可以是request,response,session等等,
如:request.setAttribute("textName", "textValu");
然后在文本框的代码这样写就可以了:
<input type="text" name="textName" value="${textName}"/>
这样,在你处理完跳转回这个页面时,上次输入的值就会显示了!
添加回答
举报