jsp頁面一定時間後跳轉到指定頁面

<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%String url = basePath+"index.jsp";//跳轉到登錄頁面
 %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
   <meta http-equiv=refresh content=5;url=<%=url %>>
    <base href="<%=basePath%>">
   
    <title>My JSP 'login_error.jsp' starting page</title>
   
 <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="cache-control" content="no-cache">
 <meta http-equiv="expires" content="0">   
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
 <meta http-equiv="description" content="This is my page">
 <!--
 <link rel="stylesheet" type="text/css" href="styles.css">
 -->
  </head>
 
<body>

    <font color="red">登錄失敗</font>
    <b style=color:blue><span id=jump>5</span> 秒鐘後頁面將自動返回登錄頁面...</b> 
  
  </body>
</html>
  <script>
    function countDown(secs){
    jump.innerText=secs;
    if(--secs>0)
        setTimeout("countDown("+secs+" )",1000);
     }
      countDown(5);
 </script>

發佈了81 篇原創文章 · 獲贊 12 · 訪問量 18萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章