1秒后跳转
法一:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="refresh" content="1;url= ">
</head>
</html>
2,js实现
<script>
// 以下方式直接跳转
window.location.href=' ';
// 以下方式定时跳转
setTimeout("javascript:location.href=' '", 1000);
</script>
使用content属性表示刷新或跳转的开始时间与跳转的网址
5秒之后刷新本页面:
5秒之后转到首页:
php跳转与定时跳转
header("Location: $httpfile");
header("refresh:1;url=$httpfile");