<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>err.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script src="scripts/jQuery/jquery.js" type="text/javascript"></script>
<script language="javascript">
$(document).ready(function() {
function jump(count) {
window.setTimeout(function(){
count--;
if(count > 0) {
$('#num').attr('innerHTML', count);
jump(count);
} else {
location.href="login.php";
}
}, 1000);
}
jump(3);
});
</script>
</head>
<body>
失败...<br />
3秒后自动跳转。当前还剩<span id="num">3</span>秒
</body>
</html>
转载于:https://www.cnblogs.com/see7di/archive/2011/06/09/2239784.html