update_success.jsp 764 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. </head>
  9. <body>
  10. <center>
  11. 数据更新成功!<p>
  12. <div id="info">本窗口将在3秒后自动关闭</div>
  13. <input type="button" value="关闭窗口" onclick="closewindow()">
  14. </center>
  15. <script type="text/javascript">
  16. function closewindow()
  17. {
  18. window.returnValue=true;
  19. window.close();
  20. }
  21. function clock()
  22. {
  23. i = i -1;
  24. if(i > 0)
  25. {
  26. document.getElementById("info").innerHTML = "本窗口将在"+i+"秒后自动关闭";
  27. setTimeout("clock();",1000);
  28. }
  29. else
  30. {
  31. closewindow();
  32. }
  33. }
  34. var i = 4;
  35. clock();
  36. </script>
  37. </body>
  38. </html>