查看目录
我们在网站建设和网站修改维护的时候经常会用到网页自动跳转的功能,比如过渡页等,这时就需要使用网页跳转代码,下面楚狂人收集了几种常用的网页跳转代码分享给大家。
第一种:html网页跳转代码。
添加到<head>和</head>之间。
<meta http-equiv="refresh" content="3;url=https://chukuangren.com";
content后面的数字控制跳转时间,3就是3秒后跳转。
第二种:js代码跳转。
<script language="javascript" type="text/javascript"> window.location="https://www.chukuangren.com";; </script>
不过,现在用的比较多的是php代码跳转网页。
第三种:php网页跳转代码。
1、利用header()函数进行重定向。(注意!locationhe和“:”之间不能有空格,否则无作用!)
<?php header('content-type:text/html;charset=uft-8); //重定向页面 header('location:https://chukuangren.com'); ?>
2、php中添加可以控制时间的网页跳转代码
<?php header('content-type:text/html;charset=utf-8'); $url='https://www.chukuangren.com'; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> //跳转页面,跳转时间:3秒钟 <meta http-equiv="refresh" content="3;url=<?php echo $url; ?>"> <title>skip...</title> </head>
2、php中使用javascript进行跳转:
<?php header('content-type:text/html;charset=utf-8'); $url='https://chukuangren.com'; //立即跳转 echo <script>window.location.href='$url';</script>; ?>
以上就是网站建设中经常会用到的网址跳转代码。使用它们可以帮你轻松的进行网页与网页之间的自动跳转,觉得好用的话,点个赞吧。