(1)第一种方法:meta实现
这个是在head部分定义,使用meta标签,<meta>元素提供了有关页面的元信息。
<Meta http-equiv="Refresh" Content="2; Url=http://www.baidu.com">
其中http-equiv是刷新自身页面,content=2表示页面停留的时间,url表示跳转之后的地址;
(2)第二种方法:JS实现
setTimeout(function(){window.location.href = ‘http://sc.jb51.net‘;},2000)
时间: 2024-10-06 00:39:55