如何实现网页自动循环跳转

发布网友 发布时间:2022-04-23 15:44

我来回答

2个回答

热心网友 时间:2022-04-21 14:03

在a.html中加入如下代码:

<script>setTimeout(function(){location.href="b.html"},30000);</script>

在b.html中加入如下代码:

<script>setTimeout(function(){location.href="c.html"},30000);</script>

依此类推……

最后在j.html中加入如下代码:

<script>setTimeout(function(){location.href="a.html"},30000);</script>

如果希望用一个单独的文件来控制9个文件的跳转,可以这样:

<iframe id=show></iframe>
<script>
var i=0,s=["a.html","b.html","c.html","d.html","e.html","f.html","g.html","h.html","i.html","j.html"];
var w=document.getElementById("show");
setInterval(function(){
    w.src=s[i];
    i=++i%s.length;
},30000);
</script>

追问我必须在每个HTML下都加这段代码吗?
setTimeout(function(){location.href="a.html"},30000);
如果这样的话,那不是这9个单独的页面都会跳转?我只是让第10个页面来循环跳转,单独的页面不会跳转。

热心网友 时间:2022-04-21 15:21

我也不知道

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com