pub_del_success.jsp
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page language="java" contentType="text/html; charset=GB18030"
  2.     pageEncoding="GB18030"%>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
  7. <title>删除记录成功</title>
  8. <script type="text/javascript">
  9. function closewindow(){
  10. window.returnValue = true;
  11. window.close();
  12. }
  13. function clock(){
  14. i = i -1;
  15. if(document.getElementById("info")){
  16. document.getElementById("info").innerHTML = "本窗口将在"+i+"秒后自动关闭";
  17. }
  18. if(i > 0)
  19. setTimeout("clock();",1000);
  20. else
  21. closewindow();
  22. }
  23. var i = 4;
  24. clock();
  25. </script>
  26. </head>
  27. <body>
  28. <center>
  29. 删除记录成功!<p>
  30. <div id="info">本窗口将在3秒后自动关闭</div>
  31. <input type="button" value="关闭窗口" onclick="closewindow();">
  32. </center>
  33. </body>
  34. </html>