<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404页面5秒返回首页</title>
<style>
body{ font-family:"微软雅黑"}
#mes{ color:#FF0000}
a{ color:#ff0000; text-decoration:none;}
a:hover{ color:#999}
.box{ width:500px; margin:150px auto 0; height:300px; background:url(http://www.hbxry.com/404.jpg) no-repeat; padding:100px 0 0 250px;}
</style>
</head>
<body>
<div class="box">  
  <h1>将在 <span id="mes">5</span> 秒钟后返回到首页！</h1>
  <p>您也可以点击以下链接，直达本站相应栏目</p>
  <p>
  <a href="http://www.hbxry.com/">首页</a>
  <a href="http://www.hbxry.com/html/contact/">联系我们</a>
  </p>
</div>
<script>
    var i = 5;
    var timer;
    timer = setInterval("fun()", 1000);

    function fun() {
        if (i == 0) {
            window.location.href = "http://www.hbxry.com/";
            clearInterval(timer);
        }
        document.getElementById("mes").innerHTML = i;
        i--;
    }
    </script>
</body>
</html>