1、meta標簽實現
只需在head裡加上下面這一句就行了,在當前頁面停留0.1秒後跳轉到目標頁面
復制代碼 代碼如下:
<meta http-equiv="refresh" content="0.1; url=http://jb51.net/">
2、Javascript實現
方法一:
這個方法比較常用
復制代碼 代碼如下:
window.location.href = "http://jb51.net/";
方法二:
復制代碼 代碼如下:
self.location = "http://jb51.net/";
方法三:
復制代碼 代碼如下:
top.location = "http://jb51.net/";
方法四:
只對IE系列浏覽器有效,實用性不大
復制代碼 代碼如下:
window.navigate("http://jb51.net/");
3、php實現
復制代碼 代碼如下:
<?php
header("Location: http://jb51.net/");
?>
Ok,以上就是今天總結的幾種頁面跳轉的方法了。