标签:
<a href="hello.jsp">a标签跳转</a>
1.javascript提交表单的写法
<script type="text/javascript"> function submit () { with (document.getElementById("submit")) { action = "hello.jsp"; method = "post"; submit (); } } </script>
2.window.location直接定位
<script type="text/javascript" >
window.self.location = "hello.jsp";
window.location.replace ("http://www.cnblog.com");
</script>
3.使用history对象的foward(), back(), go()方法
其中go()方法需要一个整形入口参数
<a href="javascript:history.go(-1);">返回上一步</a>等价于
<a href="javascript:history.back();">返回上一步</a>
<form name="form1" method="post" action="hello.jsp"> <input type="text" name="name"> <input type="text" name="password"> <input type="submit" value="提交"> </form>
1.直接使用sendRedirect()重定向,重定向后在浏览器地址栏上会出现重定向页面的URL <% response.sendRedirect("http://www.cnblogs.com"); %>
ps:sendRedirect()中的URL是可以带参数的,例如sendRedirect("http://www.cnblogs.com?name="+name"),可以在跳转到时候传入参数,此外,一般response.sendRedirect()之后紧跟一句return;既然已经要做转向,那么sendRedirect之后的输出就没有任何意义,而且有可能导致转向失败。
2.使用setHeader()方法,直接修改地址栏来实现页面的重定向
<%
response.setHeader("Refresh", "1; url = http://www.cnblogs.com");
%>
标准格式:response.setHeader("Refresh", "等待的秒数; url = 绝对路径或者相对路径")
RequestDispatcher rd = request.getRequestDispatcher("目标页面");
rd.forward(response,request);
Servlet可通过两种方式得到RequestDispatcher对象:
ServletContext的getRequestDispatcher()
ServletRequest的getRequestDispatcher()
调用ServletContext的getRequestDispatcher(String path)方法,path参数指定目标组件的路径。
调用ServletRequest的getRequestDispatcher(String path)方法与上一个方式的区别在于,前者的path参数必须是绝对路径,而后者的path参数可以是绝对路径,也可以是相对路径。所谓绝对路径,就是指以符号"/"开头的路径,"/"表示当前web应用的URL入口。
response:
forward:
<a href="" onclick = "do();return false">doSomething</a>
这是个执行顺序的问题,<a>这个标签的执行顺序是先执行onclick脚本,然后执行href参数指定页面的跳转。在onclick中返回false,就可以终止<a>标签的工作流程,也就是不让页面跳转到href参数指定的页面
<a href="javascript:void(0)" onclick="do()">doSomething</a>
<a href="#" onclick="do()">doSomething</a>
总是跳转到当前页面顶部,页面内容较多时,会有跳转的感觉
标签:
原文地址:http://www.cnblogs.com/guDouMaoNing/p/4342800.html