欢迎来到天天文库
浏览记录
ID:37710797
大小:35.00 KB
页数:5页
时间:2019-05-29
《jsp页面跳出框架注销-退出》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、jsp退出系统(注销和退出整个系统)(退出top框架) 退出和注销按钮都是放在top的窗口中,用注销页面:处理页面: <% if(session.getAttribute("username")==
2、null
3、
4、session.getAttribute("username")==""){ response.sendRedirect("../login/login.jsp"); return; } else{ if(request.getParameter("id").equals("1")){ session.invalidate(); out.println("5、ascript'>alert('确定要注销吗?');"+"window.top.location.href='../login/login.jsp';"); } //out.println("alert('确定要退出吗?');"+"window.location.href='../login/login.jsp';"); else{ session.invali6、date(); out.print("top.close();"); } } %>这种方法只退出top的框架,左右框架都没退出,查点资料,原理方法很简单:解决方法1:只要在注销页面和退出加个target="_top"就可以了 7、top">注销 退出这样它会先在另一个窗口跳出脚本提示!而退出整个系统脚本上有点问题 <% if(session.getAttribute("username")==null8、9、session.getAttribute("username")==""){ response.send10、Redirect("../login/login.jsp"); return; } else{ if(request.getParameter("id").equals("1")){ session.invalidate(); out.println("alert('确定要注销吗?');"+"window.top.location.href='../login/l11、ogin.jsp';"); } //out.println("alert('确定要退出吗?');"+"window.location.href='../login/login.jsp';"); else{ session.invalidate(); %> 12、 top.opener=null; //不过这个我暂时还不知道什么意思,应该是刷新原来的页面 top.close(); <% } } %>解决方法2: 刚问了一个网友,他给我提供的一种脚本的方法,不用提交到其他页面处理,只在本页面,很不错的!!!
5、ascript'>alert('确定要注销吗?');"+"window.top.location.href='../login/login.jsp';"); } //out.println("alert('确定要退出吗?');"+"window.location.href='../login/login.jsp';"); else{ session.invali
6、date(); out.print("top.close();"); } } %>这种方法只退出top的框架,左右框架都没退出,查点资料,原理方法很简单:解决方法1:只要在注销页面和退出加个target="_top"就可以了 7、top">注销 退出这样它会先在另一个窗口跳出脚本提示!而退出整个系统脚本上有点问题 <% if(session.getAttribute("username")==null8、9、session.getAttribute("username")==""){ response.send10、Redirect("../login/login.jsp"); return; } else{ if(request.getParameter("id").equals("1")){ session.invalidate(); out.println("alert('确定要注销吗?');"+"window.top.location.href='../login/l11、ogin.jsp';"); } //out.println("alert('确定要退出吗?');"+"window.location.href='../login/login.jsp';"); else{ session.invalidate(); %> 12、 top.opener=null; //不过这个我暂时还不知道什么意思,应该是刷新原来的页面 top.close(); <% } } %>解决方法2: 刚问了一个网友,他给我提供的一种脚本的方法,不用提交到其他页面处理,只在本页面,很不错的!!!
7、top">注销 退出这样它会先在另一个窗口跳出脚本提示!而退出整个系统脚本上有点问题 <% if(session.getAttribute("username")==null
8、
9、session.getAttribute("username")==""){ response.send
10、Redirect("../login/login.jsp"); return; } else{ if(request.getParameter("id").equals("1")){ session.invalidate(); out.println("alert('确定要注销吗?');"+"window.top.location.href='../login/l
11、ogin.jsp';"); } //out.println("alert('确定要退出吗?');"+"window.location.href='../login/login.jsp';"); else{ session.invalidate(); %>
12、 top.opener=null; //不过这个我暂时还不知道什么意思,应该是刷新原来的页面 top.close(); <% } } %>解决方法2: 刚问了一个网友,他给我提供的一种脚本的方法,不用提交到其他页面处理,只在本页面,很不错的!!!
此文档下载收益归作者所有