首頁  >  文章  >  後端開發  >  以HTML/JS/PHP方式實作頁面延遲跳轉的簡單實例_php實例

以HTML/JS/PHP方式實作頁面延遲跳轉的簡單實例_php實例

WBOY
WBOY原創
2016-08-04 08:56:59878瀏覽

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>

F.JS
歷史記錄

go(url)方式(注意url必須是歷史記錄內的,不然頁面不會進行跳轉)

<script type="text/javascript">

  window.history.go(‘index.php');

</script>

G.JS window.open
方式,透過開啟一個新窗口,實現跳躍。 (其第二個屬性為可選目標選項,值可以是

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”);
要注意這種方式會導致無法進入目前頁面。即若目前在register.php頁面連結到login.php頁面時,login.php頁內用header lo. php頁面直接等待三秒跳到index.php,不會進入到login.php頁面,這是因為header location

我會對頁面進行重定向。

如有錯誤,歡迎指正,謝謝。

🎜 🎜以上這篇用HTML/JS/PHP方式實現頁面延遲跳轉的簡單實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。 🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn