首页 > 代码库 > 页面打开后,几秒后自动跳转

页面打开后,几秒后自动跳转

(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://www.mamicode.com/‘http://sc.jb51.net‘;},2000)

 



 

页面打开后,几秒后自动跳转