如果要实现定时的关闭弹出窗口

<script language="javascript">
function closeit()
{
setTimeout("self.close",10000);  //间隔10秒钟自动关闭
}
</script>

窗体中加入:
<body onload=closeit()>
</body>

相关文章: