php實作一個頁面跳到其它頁面的方法:在php腳本中加入程式碼【header("location:url位址")】即可。如果要延遲跳轉,程式碼為【header("Refresh:秒數;url=位址")】。
本文操作環境:windows10系統、php 7.3、thinkpad t480電腦。
在PHP腳本程式碼中實作
<?php header("location:url地址") ?>
例如
<?php header("location:helloworld.php") ?>
頁面會立即跳轉,因為header執行了location重定向。
延遲跳轉(例如登陸成功後會有幾秒鐘等待時間,然後跳到了其他頁面)
<?php header("Refresh:秒数;url=地址") ?>
例如
<?php header("Refresh:3;url=helloworld.php") ?>
會在3秒後執行跳轉
<?php sleep(3); header("location:url地址") ?>
(學習影片分享:php影片教學)
呼叫了sleep()方法,效果也是x秒後執行跳轉
在js腳本程式碼中實作
1.window.location.href方法
<script type="text/javascript"> window.location.href="helloworld.php" </script>
使用js方法實作延遲跳轉
<script type="text/javascript"> setTimeout("window.location.href='helloworld.php'",3000);</script>
2.window.location.assign方法 延遲跳轉方法同上
<script type="text/javascript">window.location.assign("helloworld.php");</script>
3.window.location.replace方法 (讓新頁面替換掉當前頁面,不會保存在歷史記錄裡,所有不能使用瀏覽器後退到原頁面了)
<script type="text/javascript"> window.location.replace("helloworld.php");</script>
4.window.open方法三個參數,第一個URL位址。第二個開啟新頁面方式(例如新頁面_blank,_new,自身跳轉_self),第三個是新頁面的方式,包括樣式,位置等。
<script type="text/javascript"> window.open("index.php",_blank,width=300px);</script>
使用HTML腳本程式碼完成跳轉
在93f0f5c25f18dab9d176bd4f6de5d30e標籤裡執行程式碼
#直接插入這句程式碼就可以
<meta http-equiv="refresh" content="3;url='helloworld.php'">
相關推薦:php教學
以上是php怎麼實作一個頁面跳到其它頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!