php怎么实现一个页面跳转到其它页面
时间:2022-02-11 13:31
php实现一个页面跳转到其它页面的方法:在php脚本中添加代码【header("location:url地址")】即可。如果要延迟跳转,代码为【header("Refresh:秒数;url=地址")】。 本文操作环境:windows10系统、php 7.3、thinkpad t480电脑。 在PHP脚本代码中实现 例如 页面会立即跳转,因为header执行了location重定向。 延迟跳转(比如登陆成功后会有几秒钟等待时间,然后跳转到了其他页面) 例如 会在3秒后执行跳转 (学习视频分享:php视频教程) 调用了sleep()方法,效果也是x秒后执行跳转 在js脚本代码中实现 1.window.location.href方法 使用js方法实现延迟跳转 2.window.location.assign方法 延迟跳转方法同上 3.window.location.replace方法 (让新页面替换掉当前页面,不会保存在历史记录里,所有不能使用浏览器后退到原页面了) 4.window.open方法 三个参数,第一个URL地址。第二个打开新页面方式(比如新页面_blank,_new,自身跳转_self),第三个是新页面的方式,包括样式,位置等。 使用HTML脚本代码完成跳转 在<head>标签里执行代码 直接插入这句代码就可以 相关推荐:php教程 以上就是php怎么实现一个页面跳转到其它页面的详细内容,更多请关注gxlsystem其它相关文章!<?php
header("location:url地址")
?>
<?php
header("location:helloworld.php")
?>
<?php
header("Refresh:秒数;url=地址")
?>
<?php
header("Refresh:3;url=helloworld.php")
?>
<?php
sleep(3);
header("location:url地址")
?>
<script type="text/javascript">
window.location.href="helloworld.php"
</script>
<script type="text/javascript">
setTimeout("window.location.href='helloworld.php'",3000);</script>
<script type="text/javascript">window.location.assign("helloworld.php");</script>
<script type="text/javascript">
window.location.replace("helloworld.php");</script>
<script type="text/javascript">
window.open("index.php",_blank,width=300px);</script>
<meta http-equiv="refresh" content="3;url='helloworld.php'">