<!DOCTYPE html>
<html lang="zh_CN">
<head lang="zh_CN">
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="renderer" content="webkit"/>
    <meta http-equiv="Cache-Control" content="no-siteapp"/>
    <title>统一异常处理</title>
    <link rel="icon" href="http://img.javatiku.cn/favicon.ico" mce_href="http://img.javatiku.cn/favicon.ico"
          type="image/x-icon">
    <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
    <script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
    <script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
    <script>
        /*<![CDATA[*/
        var t = 3;//设定跳转的时间
        var timer = setInterval("refer()", 1000);

        function refer() {
            if (t == 0) {
                clearInterval(timer);
                location = "https://wm.songshuhezi.com/";
            }
            $("#show").html("将在 " + t + " 秒后跳转到首页，<a class=\"card-link\" href=\"https://wm.songshuhezi.com/\">直接打开</a>");
            t--;
        }

        /*]]>*/
    </script>
</head>
<body>
<div class="container">
    <div class="row">
        <div class="col-lg-1"></div>
        <div class="col-lg-10">
            <div class="card" style="margin: 70px 0;">
                <div class="card-body">
                    <h5 class="card-title text-center">错误!</h5>
                    <div class="card-text text-danger text-center">出错啦，请联系管理员！！！</div>
                    <p style="margin-top: 10px;" class="text-dark text-center" id="show">将在 3 秒后跳转到首页，<a class="card-link" href="https://wm.songshuhezi.com/">直接打开</a></p>
                </div>
            </div>
        </div>
        <div class="col-lg-1"></div>
    </div>
</div>
</body>
</html>