几种常用页面的跳转
Posted yangj-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了几种常用页面的跳转相关的知识,希望对你有一定的参考价值。
JSP 跳转
1、转发:request.getRequestDispatcher(".jsp").forward(request,response);
2、重定向:response.sendRedirect("success.jsp");
转发,前后页面共享一个request,重定向是重新定向 前后页面不是一个request
3、<jsp:forward page="URL"/>
js页面的跳转方式:
window.location.href="URL";
html页面跳转
1、html中使用meta中跳转,通过meta可以设置跳转时间和页面
<head> <!--只是刷新不跳转到其他页面 --> <meta http-equiv="refresh" content="5"> <!--定时转到其他页面 --> <meta http-equiv="refresh" content="5;url=index.html"> </head>
2.a标签直接跳转
<a href="http://baidu.com">百度一下</a>
3.表单与按钮的跳转
以上是关于几种常用页面的跳转的主要内容,如果未能解决你的问题,请参考以下文章