表单里的内容我经由在servelet测试更换赤色部分的内容,
int b = new MemberDao.save(member);\r if(b!=0){\r out.print(\"大众<script>alert('提交成功')</script>\公众);\r out.print(\公众<script>location.href='WebPage/wyrh.jsp';</script>\公众);\r out.print(\"大众true\"大众);\r }else{\r out.print(\"大众error\"大众);\r }
创造以下这些方法 前台表单还是会保存记录的(便是实行servelet后表单写着的内容还显示着)
window.location.reload 刷新
window.history.go(1) 提高
window.history.go(-1) 退却撤退
window.history.forward 提高
window.history.back 相称于 window.history.go(-1)+window.location.reload
后来我查找到了前台表单不会保存记录的方法
location.href=‘’;location.assign(两者相同)
location.href='http://www.example.com'
而location.assign('http://www.example.com') 便是 location.href='http://www.example.com'至于还有一个类似的location.replace,但是利用它servelet返回不到前台了location.replace('http://www.example.com')与前两者的差异是,在replace之后,浏览历史就被清空了(href与assign方法会产生历史记录)。