WEB開發中常會遇到頁面跳轉或縮時跳轉的需求,掌握各種頁面跳躍方式非常必要。
以下是我總結有用HTML/JS/PHP三類方式實現跳躍的方法,例子皆為三秒後跳到index.php頁面。
1,HTML方法:
在HEAD中加入標籤
<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>
go(url)方式(注意url必須是歷史記錄內的,不然頁面不會進行跳轉)
<script type="text/javascript"> window.history.go(‘index.php'); </script>
frame id/_blank等,第三個選項為新彈出視窗的特定設定選項,包括height/width等)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”);