码迷,mamicode.com
首页 > 其他好文 > 详细

几种常用页面的跳转

时间:2020-05-29 10:27:19      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:百度一下   text   get   ESS   方式   class   oca   a标签   使用   

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.表单与按钮的跳转

几种常用页面的跳转

标签:百度一下   text   get   ESS   方式   class   oca   a标签   使用   

原文地址:https://www.cnblogs.com/yangj-Blog/p/12985275.html

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