| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK" />
- <title>成功提示</title>
- <script src="/shares/js/jquery-1.7.1.min.js" type="text/javascript"></script>
- <link href="/shares/css/yw/master1/reset.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
- var objTimer = window.setInterval(showalert, 1000);
- var i=4;
- function showalert()
- {
- $("#num").html(i);
- i--;
- }
- window.setTimeout("success()",5000);
- function success(){
- window.clearInterval(objTimer);
-
- location.href = "${pageContext.request.contextPath }${url}";
- }
- </script>
- </head>
- <body>
- <div align="center" valign="middle">
- <div class="sucess_ico"><img src="/shares/images/master1/success.png" width="173" height="96" /></div>
- <div class="sucess_f">${info}</div>
- <div class="sucess_f1">如果<span id="num">5</span>秒钟后还没跳转,请<a href="#" onclick="success();" style="color: white;text-decoration:underline;"><span class="sucess_f1">点击这里</a></span>!</div>
- <!-- <div class="sucess_c"><input type="button" class="sucess_btn" value="返回列表" /></div> -->
- </div>
- </body>
- </html>
|