欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

提交完之后多选框选中的值还保存在页面上

程序员文章站 2022-07-13 23:04:03
...
首先在jsp页面上checkbox的property值不能相同,如下

<html:checkbox property="testBox1" value="chargeStat01">处罚开始</html:checkbox>
<html:checkbox property="testBox2" value="chargeStat01">处罚开始</html:checkbox>


form:

public class ChargeStatForm extends ActionForm {

private String testBox;

public String getTestBox() {
return testBox;
}
public void setTestBox(String testBox) {
this.chargeStatChargeItemInput="";
this.testBox = testBox;
}
}


这样就可以让提交之后出现错误信息之后多选框不被置空,而是原先选中什么现在还选中什么的状态

黑色头发 http://heisetoufa.iteye.com
相关标签: JSP HTML