实现网页页面跳转的几种方法(meta标签、js实现、php实现)

1、meta标签实现 只需在head里加上下面这一句就行了,在当前页面停留0.1秒后跳转到目标页面

<meta http-equiv="refresh" content="0.1; url=http://baidu.cn/">

2、Javascript实现
方法一:
这个方法比较常用

window.location.href = "http://baidu.cn/";

方法二:

self.location = "http://baidu.cn/";

方法三:

top.location = "http://baidu.cn/";

方法四:
只对IE系列浏览器有效,实用性不大

window.navigate("http://baidu.cn/");

3、php实现

<?php
    header("Location: http://baidu.cn/");
?>
    原文作者:GongChao
    原文地址: https://segmentfault.com/a/1190000000481442
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞