您好,登錄后才能下訂單哦!
今天小編就為大家分享PHP實現頁面跳轉的四種方法。小編覺得挺實用的,為此分享給大家做個參考。一起跟隨小編過來看看吧。
在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秒后執行跳轉
在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腳本代碼完成跳轉
在<head>標簽里執行代碼
直接插入這句代碼就可以
<meta http-equiv="refresh" content="3;url='helloworld.php'">
看完上述內容,你們掌握PHP實現頁面跳轉的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。