js制作404错误页面5秒钟倒计时自动跳转

<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>404错误页面</title>

</head>

<body>
<div style="width:500px; height:350px; position:absolute; top:50%; left:50%; font-family:'Arial'; text-align:center; margin-left:-225px; margin-top:-175px;">
    <h1 style="font-size:200px; line-height:0; color:#444;;">404</h1>
    <p style="color:#ccc; font-size:18px;">Sorry,this page flew to the moon!</p>
    <p><strong id="time" style="color:#D3070A;">5</strong>秒后自动跳转,如果不跳转,请点击下面的链接<a href="http://www.baidu.com/">返回首页</a></p>
</div>    
<script type="text/javascript"> 
	function delayURL(url) {
		var delay = document.getElementById("time").innerHTML;
		if(delay > 0) {
			delay--;
			document.getElementById("time").innerHTML = delay;
		} else {
			window.top.location.href = url;
		}
		setTimeout("delayURL('" + url + "')", 1000);
	}
	delayURL("http://www.baidu.com/");
</script>     
</body>
</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值