美文网首页
PHP页面跳转和自动加载的几种方法!

PHP页面跳转和自动加载的几种方法!

作者: DragonersLi | 来源:发表于2017-08-12 16:12 被阅读35次

    1.meta标签:

     <meta http-equiv='refresh' content="1; url='http://blog.cc/test.php/s/0/e/10'"  'Content-Type' content='text/html; charset=gb2312' /> 
    #其它用途:
    #一:跳转本页面,通过GET传参数,进行分页取数据操作(适合数据表数据量大,导入导出操作)
    #二:执行定时脚本任务
    

    2.js跳转:

    #windows可以省略不写:
    <a href="#" onclick="location.href='http://www.baidu.com'">test1</a>
    <a href="#" onclick="window.location.href='http://www.baidu.com'">test2</a>
    

    php中js跳转:

           $url = "http://www.test.cc/index.php?s={$end}";
            echo "<script type='text/javascript'>location.href='{$url}'</script>";
    

    3.header跳转:

    header("Location:http://www.baidu.com");
    //直接跳转
     header('Refresh: 4; url=http://www.baidu.com/'); 
     //4s后跳转 
    
    

    4.定时刷新脚本:

      // echo'<script>setTimeout("window.location.reload()",1000); 
    //指定1秒刷新一次</script>';
    

    相关文章

      网友评论

          本文标题:PHP页面跳转和自动加载的几种方法!

          本文链接:https://www.haomeiwen.com/subject/iedulxtx.html