网页中:倒计时10、9、8、7、、依次減小,到0秒的时候自动关闭网页代码怎么写?
在网上看到提交表单的程序,提交成功后出现一个页面!显示“本网页在(*)秒后关闭”*为10、9、8、7、、
10少1秒变为9,再变、到0秒时自动关闭网页!!
下面还有一个按钮,立即关闭!
请问秒数依次减小的代码怎么写?
高手给指点一下!谢谢
[CODE]<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>用户管理中心</title>
<link href="Include/Style.Css" rel="stylesheet" type="text/css" />
<title>请稍等...</title>
<script language="javascript">
<!--
var WaitTime = 10; //等待的时间,单位秒
function WaitDo(){
if(WaitTime > 0){
putOutMsg.innerHTML = "本页面将在"+ WaitTime +"秒钟后自动关闭";
WaitTime --;
setTimeout("WaitDo()",1000);
}
else
{
window.close();
}
}
//-->
</script>
<style type="text/css">
span,font{font-size:16px; font-weight:bold;}
</style>
</head>
<body onLoad="WaitDo();" style="margin:20px;">
<span id="putOutMsg" class="OpenFont"></span>
</body>
</html>[/CODE]