美文网首页
php中实现页面跳转的几种方式

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

作者: 李贵功 | 来源:发表于2018-06-14 14:26 被阅读0次

    header('location:url');

    header("Refresh:3;url=helloworld.php")

    <?php sleep(3); header("location:url地址")?>

    js:

    window.location.href="helloworld.php"

    setTimeout("window.location.href='helloworld.php'",3000);

    window.location.assign("helloworld.php";

    相关文章

      网友评论

          本文标题:php中实现页面跳转的几种方式

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