pub_del_success.jsp
资源名称:oa.rar [点击查看]
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- <%@ 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>
- <script type="text/javascript">
- function closewindow(){
- window.returnValue = true;
- window.close();
- }
- function clock(){
- i = i -1;
- if(document.getElementById("info")){
- document.getElementById("info").innerHTML = "本窗口将在"+i+"秒后自动关闭";
- }
- if(i > 0)
- setTimeout("clock();",1000);
- else
- closewindow();
- }
- var i = 4;
- clock();
- </script>
- </head>
- <body>
- <center>
- 删除记录成功!<p>
- <div id="info">本窗口将在3秒后自动关闭</div>
- <input type="button" value="关闭窗口" onclick="closewindow();">
- </center>
- </body>
- </html>