WEB開發中經常會遇到頁面跳轉或延時跳轉的需求,掌握各種頁面跳轉方式非常必要。
以下是我總結有用HTML/JS/PHP三類方式實現跳轉的方法,例子皆為三秒後跳轉到index.php頁面。
1,HTML方法:
在HEAD中添加<meta>標簽
<meta http-equiv=”refresh” content=”3;url='index.php'” >
2,JS控制跳轉方法
A.Location直接加鏈接方式
<script type="text/javascript"> setTimeout("window.location=('index.php'",3000); </script>
B.Location.href方式
<script type="text/javascript"> setTimeout("window.location.href='index.php'",3000); </script>
C.Location.assign方式
<script type="text/javascript"> setTimeout("window.location.assign('index.php')",3000); </script>
D.Location.replace方式(注意頁面是被“替換”掉了,不會在浏覽器的歷史記錄被查詢到)
<script type="text/javascript"> Widdow.location.replace(‘index.php'); </script>
E.JS歷史記錄go(n)方式(n表示對歷史記錄相對當前頁的前進步數,n為負數表示返回以前的頁面)
<script type="text/javascript"> window.history.go(n); </script>
F.JS歷史記錄go(url)方式(注意url必須是歷史記錄內的,不然頁面不會進行跳轉)
<script type="text/javascript"> window.history.go(‘index.php'); </script>
G.JS window.open方式,通過打開一個新窗口,實現跳轉。(其第二個屬性為可選目標選項,值可以是frame id/_blank等,第三個選項為新彈出窗口的具體設置選項,包括height/width等)
<script type="text/javascript"> setTimeout("window.open('index.php',target,args)",3000); </script>
3,PHP腳本控制跳轉方式,通過改寫HTTP頭信息來進行跳轉
A.header refresh方式:
Header(“refresh:3;url='index.php'”);
B. header location 方式 :
sleep(3); Header(“location:index.php”);
要注意這種方式會導致無法進入當前頁面。即若當前在register.php頁面鏈接到login.php頁面時,login.php頁面內用header location方式跳轉,頁面會從register.php頁面直接等待三秒跳轉到index.php,不會進入到login.php頁面,這是因為header location會對頁面進行重定向。
如有錯誤,歡迎指正,謝謝。
以上這篇用HTML/JS/PHP方式實現頁面延時跳轉的簡單實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持。