弹出窗口定时自动关闭
我要实现弹出窗口的自动定时关闭
查到一些程序,在弹出窗口中,做了如下调整:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<script language="java script">
function closeit() {
setTimeout("self.close()",100) //毫秒
}
</script>
<body "closeit()">
</body>
弹出了窗口,但没有自动关闭,如何解决?