在做用PaginationSupport做分页时,会出现传递值传不多去,研究了一天,最后错误竟然是form传递方式的原因。
form提交时有两种方式,
一种是: document.getElementById("theform").submit();
另一种:
document.theform.method = "get";
document.theform.action = "/webadmin/train/mission_listRecord.action";
document.theform.submit();
使用第一种会出现传递值错误,使用第二种就不会出现,第一种默认为post方式,第二种限定为get方式就会避免错误,没有深入研究,先把问题记下来。