关于作者
顺序开辟人员,不拘泥于言语与手艺,现在重要处置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"