<html>
<!-- 5秒后将跳转到登陆页面 -->
<meta http-equiv="refresh" content='5; url=login.html'><script type="text/javascript">
var time =5;
function aaa()
{
window.setTimeout('aaa()', 1000);
time=time-1;
document.getElementById("bb").innerHTML=time;
}
</script>
</head>
<body οnlοad="aaa()">
登录失败<br>
<span id="bb" style="color:red;">time </span>秒后将自动跳转到登陆页面。
<br>
</body>
</html>
红色标记的为主要代码。