新微赢技术网
标题:
弹出窗口定时自动关闭
[打印本页]
作者:
森林的眼泪
时间:
2010-1-17 00:23
标题:
弹出窗口定时自动关闭
我要实现弹出窗口的自动定时关闭
查到一些程序,在弹出窗口中,做了如下调整:
<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>
弹出了窗口,但没有自动关闭,如何解决?
作者:
爲眀天活着
时间:
2010-1-17 00:23
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<script language="javascript">
function closeit()
{
setTimeout("self.close()",100) //毫秒
}
</script>
<body onLoad="closeit()">
</body>
这样呢
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2