关于作者
程序开发人员,不拘泥于语言与技术,目前主要从事PHP和前端开发,使用Laravel和VueJs,App端使用Apicloud混合式开发。合适和够用是最完美的追求。
最近刚写了一个手机在线播放的H5电影站:http://www.ifilm.ltd
使用html的meta
缺点:并不是立即跳转,会在当前页面停留
<meta http-equiv="Refresh" content="3;url=[要跳转的地址]"/>
<!-- 跳转到百度 -->
<meta http-equiv="Refresh" content="3;url=[要跳转的地址]"/>
使用php函数header
是立即跳转,执行header时候,并不是立即结束,而是会把页面执行完毕;在header前面不能有任何输出
header('Location:other.[其他地址]');
// 跳转到百度
header('Location:http://baidu.com');
使用PHP函数header
并指定跳转时间
// 进入页面后3秒后跳转
header('Refresh:3,Url=http://baidu.com');
echo '3s 后跳转';
die;
使用JavaScript进行跳转
location.href = "http://baidu.com"