发布网友 发布时间:2022-04-22 04:45
共2个回答
热心网友 时间:2022-04-19 09:17
这个就是了,测试了好多种的,这个是5秒之后跳转的代码,时间可以自己改
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>5秒后跳转到另一个页面</title>
</head>
<script>
var t = 5;
var s = '.';
timeID=setInterval("countDown()",1000);
function countDown(){
time.innerHTML= t +"秒后跳转"+s;
t--;
s+='.';
if (t==0) {
location.href="http://www.51zuoyi.com/"; //【这边是要跳转的目标地址】
clearInterval(timeID);
}
}
</script>
<body>
<div><font ID="time" face="impact" color="#272822" size="7">即将跳转</font>
</div>
</body>
</html>
把目标网址改为自己的就可以实现跳转了,效果可以参考一下下面
热心网友 时间:2022-04-19 10:35
为什么需要自动关闭当前页面并跳转出一个新的链接,直接在当前页面跳转不就好了吗?
在js中添加window.location.href=当前要跳转的页面地址 就可以实现