


<html>
<head>
    <title>页面找不到或失效</title>
    <script language="javascript" type="text/javascript" src="/nxzj/static/js/jquery-1.11.3.min.js"></script>
    <style>
        html, body {
            width: 100%;
            height: 100%;
            margin: auto;
            padding: 0;
            overflow: hidden;
            background: #F6F7F9;
        }

        .notfind {
            background: url('/nxzj/static/images/403.jpg') center no-repeat;
            width: 100%;
            height: 538px;
            margin: 100px auto;
            position: relative;

        }

        .btn-div {
            /*background: red;*/
            width: 800px;
            height: 60px;
            position: absolute;
            left: 200px;
            top: 410px;
        }
    </style>
</head>

<body >
<div class="notfind" onclick="getUrl()">
    <div class="btn-div" onclick="getUrl()">

    </div>
</div>
<script type="application/javascript">
    function getUrl() {
         var url;
        jQuery.ajax({
            url: "/nxzj/login/indexUrl",
            type: "get",
            data: null,
            dataType: "json",
            success: function(msg) {
                url= msg;
                if(url==null||url==""){
                    url="http://www.nxjob.cn";
                }
                window.open(url,'_self');
            },error: function(XMLHttpRequest, textStatus, errorThrown) {
                if(url==null||url==""){
                    url="http://www.nxjob.cn";
                }
                window.open(url,'_self');
            }
        });

    }
</script>
</body>
</html>
