navigate.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=GBK" />
  8. <title>成功提示</title>
  9. <script src="/shares/js/jquery-1.7.1.min.js" type="text/javascript"></script>
  10. <script type="text/javascript" src="/shares/js/yw/master1/common.js"></script>
  11. <script type="text/javascript" src="/shares/js/common.js"></script>
  12. <link href="/shares/css/yw/master1/reset.css" rel="stylesheet" type="text/css" />
  13. <script type="text/javascript" src="/shares/js/yw/master1/desktop/desktop.js"></script>
  14. <link href="/shares/css/yw/master1/style.css" rel="stylesheet" type="text/css" />
  15. <script type="text/javascript">
  16. function success(){
  17. showPerData();
  18. }
  19. function closeNavigate(e){
  20. var isClose = $(e).attr("checked");
  21. if(isClose){
  22. var param={};
  23. sendAsyncAjax(param, "MTNavigateAction.do?method=configNavigate", "json", function(data){
  24. });
  25. }
  26. }
  27. function showPerData(){
  28. //openDesktop('oaDocToManagerList');
  29. openLayer('60%',0.6,"testAction.do?type=6");
  30. }
  31. </script>
  32. </head>
  33. <body style="background-color:transparent">
  34. <div align="center" valign="middle">
  35. <div class="sucess_ico"><img src="/shares/images/master1/success.png" width="173" height="96" /></div>
  36. <div class="sucess_f">${info}</div>
  37. <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>
  38. <input type="checkbox" value="1" onclick="closeNavigate(this)"/>关闭导航
  39. </div>
  40. </body>
  41. </html>