如何定期循环2个html页面

时间:2018-04-12 10:51:49

标签: html dashboard

我有2个由我们的制作软件生成的静态html网页。 我想在这两页之间定期更换车间女孩。有可能与ajax或JavaScript?

3 个答案:

答案 0 :(得分:0)

当然,您可以在Javascript函数JS Timing events中执行某种类型的JavaScript setTimeout()或setInterval()调用。

就个人而言,我可能会使用jQuery来管理它并执行类似

的操作
Intent

Here's how to navigate to other pages using JS

Here's a quick jQuery intro

答案 1 :(得分:0)

在第一个文件中使用以下代码:

<script type="text/javascript">setTimeout(function(){location.href="url.to.the.second.page";},10 * 1000); </script>

并在第二个文件中:

<script type="text/javascript">setTimeout(function(){location.href="url.to.the.first.page";},10 * 1000); </script>

答案 2 :(得分:0)

纯HTML示例

要在两个网页之间自动切换,请将其放在一页上的<head>标记之间:

<meta http-equiv="refresh" content="5; url=page1.html">

将其放在另一页上的<head>标记之间:

<meta http-equiv="refresh" content="5; url=page2.html">

5是加载指定URL之前等待的秒数。更改网址以适合您的网页。

https://en.wikipedia.org/wiki/Meta_refresh