Rumah  >  Artikel  >  pembangunan bahagian belakang  >  神操作之实现PHP跳转

神操作之实现PHP跳转

花姐姐
花姐姐ke hadapan
2020-05-06 10:18:552392semak imbas

神操作之实现PHP跳转

PHP中实现页面跳转有以下几种方式

在PHP脚本代码中实现

e908c052a3ad5139088a647ccd110fe2   

例如 cfd516de47e3504b3098e1597e0bace7    页面会立即跳转,因为header执行了location重定向

延迟跳转(比如登陆成功后会有几秒钟等待时间,然后跳转到了其他页面)

d5754048cf66e34fc109dfeb8ba7f878 

例如 4d7a08eae435642f926ed7e4105620c9 会在3秒后执行跳转
4f268512b0ad509f21839988b1a29813  调用了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=&#39;helloworld.php&#39;",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=&#39;helloworld.php&#39;">

花式实现相关跳转,你值得拥有

推荐学习:PHP

Atas ialah kandungan terperinci 神操作之实现PHP跳转. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Artikel ini dikembalikan pada:cnblogs.com. Jika ada pelanggaran, sila hubungi admin@php.cn Padam
Artikel sebelumnya:PHP Swoole 基本使用Artikel seterusnya:php实现无限级评论功能