码迷,mamicode.com
首页 > Web开发 > 详细

JS提交表单后回跳的细节处理

时间:2016-07-22 14:26:59      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

有些时候提交表单后需要我们留在原来表单的界面,那么提交后如何使表单里面的内容清空或者保留呢?作为一个小知识点我总结了下:(以后我还会补充些相关内容)

 

表单里的内容我经过在servelet测试替换红色部分的内容,

        int b = new MemberDao().save(member);
        if(b!=0){
            out.print("<script>alert(‘提交成功‘)</script>");
            out.print("<script>location.href=‘WebPage/wyrh.jsp‘;</script>");
            out.print("true");
        }else{
            out.print("error");
        }

发现以下这些方法 前台表单还是会保存记录的(就是执行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方法会产生历史记录)。

 

JS提交表单后回跳的细节处理

标签:

原文地址:http://www.cnblogs.com/MuYunyun/p/5694796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!