<!DOCTYPE html>
<head>
<title>5秒之后跳转到首页</title>
<style>
p{
text-align: center;
}
span{
color: red;
}
</style>
</head>
<body>
<p>
<span id="time">5</span>秒之后跳转到首页.......
</p>
<script>
var t=5;
var x=document.getElementById("time");
function showTime(){
--t;
if(t<=0){
location.href="https://ww.baidu.com"
}
x.innerHTML=t;
}
setInterval(showTime,1000);
</script>
</body>
</html>