<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script type="text/javascript" src="js/jquery.min.js"></script>
		<link rel="stylesheet" href="css/style.css" />
	</head>
	<body>
		<div class="l-error">
			<dl>
				<dt><img src="images/error.png"/></dt>
				<dd>
					<div class="l-return"><a href="https://career.shanghaitech.edu.cn/">返回首页</a></div>
					<p>网页出错了，<span id="num">15</span>s后将离开此页返回首页</p>
				</dd>
			</dl>
		</div>
		<script>
			 $(document).ready(function() {			 	
	            function jump(count) {
	                window.setTimeout(function(){
	                    count--;
	                    if(count > 0) {
	                        $('#num').html(count);
	                        jump(count);
	                    } else {
	                        location.href="https://career.shanghaitech.edu.cn/";
	                    }
	                }, 1000);
	            }
	            jump(15);
	        });
		</script>
	</body>
</html>
