| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%@ 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>
- <script type="text/javascript" src="/shares/js/yw/master1/common.js"></script>
- <script type="text/javascript" src="/shares/js/common.js"></script>
- <link href="/shares/css/yw/master1/reset.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="/shares/js/yw/master1/desktop/desktop.js"></script>
- <link href="/shares/css/yw/master1/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
- function success(){
- showPerData();
- }
- function closeNavigate(e){
- var isClose = $(e).attr("checked");
- if(isClose){
- var param={};
- sendAsyncAjax(param, "MTNavigateAction.do?method=configNavigate", "json", function(data){
-
- });
- }
- }
- function showPerData(){
- //openDesktop('oaDocToManagerList');
- openLayer('60%',0.6,"testAction.do?type=6");
- }
- </script>
- </head>
- <body style="background-color:transparent">
- <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="showPerData()" style="color: white;text-decoration:underline;"><span class="sucess_f1">点击这里</a></span>!</div>
- <input type="checkbox" value="1" onclick="closeNavigate(this)"/>关闭导航
- </div>
- </body>
- </html>
|