php實作頁面跳轉的方法有:1、在PHP腳本程式碼中實現跳躍;2、使用js方法實現延遲跳轉;3、使用HTML腳本程式碼完成跳轉。
php實作頁面跳轉的方法有:
##1、在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地址")?> 调用了sleep()方法,效果也是x秒后执行跳转
2、在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>
3、使用HTML腳本程式碼完成跳轉
#在93f0f5c25f18dab9d176bd4f6de5d30e標籤裡執行程式碼
##直接插入這句程式碼就可以
<meta http-equiv="refresh" content="3;url='helloworld.php'">相關學習推薦:
php圖文教學
以上是php實作頁面跳轉的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!