123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <%@ page language="java" contentType="text/html; charset=GB18030"
- pageEncoding="GB18030"%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
- <title></title>
- </head>
- <body>
- <center>
- 数据更新成功!<p>
- <div id="info">本窗口将在3秒后自动关闭</div>
- <input type="button" value="关闭窗口" onclick="closewindow()">
- </center>
- <script type="text/javascript">
- function closewindow()
- {
- window.returnValue=true;
- window.close();
-
- }
- function clock()
- {
- i = i -1;
-
- if(i > 0)
- {
- document.getElementById("info").innerHTML = "本窗口将在"+i+"秒后自动关闭";
- setTimeout("clock();",1000);
- }
- else
- {
- closewindow();
- }
- }
- var i = 4;
- clock();
- </script>
- </body>
- </html>
|