• php实现页面跳转的几种方式


    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'"> 
  • 相关阅读:
    jvm学习(重点)
    java单例模式之懒汉式分析
    spring中bean实例化时机以及整个运转方式
    servlet的总结
    NGINX location 在配置中的优先级
    java多态 以及静态绑定 动态绑定积累
    有关string stringbuff stringbuild 的区别
    java中静态变量,静态代码块,静态方法,实例变量,匿名代码块等的加载顺序
    java线程方面的知识
    Jmeter的接口测试简介
  • 原文地址:https://www.cnblogs.com/beili/p/8669653.html
Copyright © 2020-2023  润新知