欢迎屏幕,重定向到主页

Welcome Screen, Redirecting to main page

本文关键字:主页 重定向 屏幕      更新时间:2023-09-26

我想制作一个欢迎屏幕,在5秒钟后重定向到主页。我试过了,但没用。

<script>
function myFunc()
{
setTimeout('Decrement()',5000);
}
function Decrement()
{
location="index.html";
}
</script>

</head>
<body onload="myFunc()">

这在欢迎页面中。我该如何让它工作?

函数声明中有一个拼写错误:

将其更改为:

function myFunc()
{
setTimeout('Decrement()',5000);
}

还要验证index.html是否与html页面存在于同一文件夹中

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

这是一种简单得多的方法。

感谢@Syfaro