Struts2/JSP/HTML 页面自动跳转的方法

1)在Body中使用JS实现 

    

 <script type="text/javascript">
         this.location.href="/provision/login/login"; 
  </script>

 

2)使用JSP的response.sendRedirect

     

<%
         response.sendRedirect("login/login")
 %>

 

3)使用head的属性实现

 <META HTTP-EQUIV="Refresh" CONTENT="0;URL=login/login">

  

你可能感兴趣的:(JavaScript,html,jsp)