Posted on Saturday, November 05, 2005 4:08 AM
<html>
<head>
<title></title>
</head>
<body>
<script>
m=5
Time=window.setInterval("Alors()",1000);
function Alors(){
Ob=document.all("L");
Ob.innerHTML=m;
m--;
if(m==0){
window.open('Logon.aspx','_self');
}
}
</script>
<span id=L>5</span>秒后自动跳转至登录页面
</body>
</html>