<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="gb2312">
    <title>页面没找到</title>
    <script src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>页面没找到，<b id="countdown">5</b> 秒后将带您进入首页！
<script language="">
        $(document).ready(function() {
            var count = 5;
            var timer = setInterval(function() {
                $('#countdown').text(count);
                if (count <= 0) {
                    clearInterval(timer);
                    location.href = 'in.asp'; // 替换为你想要跳转的URL
                }
                count--;
            }, 1000);
        });
    
</script>
</body>
</html>