学习HTML、PHP、JavaScript这三种不同的页面跳转重定向代码
网页的跳转重定向方法很多,这里只介绍3种。
- HTML在页面头标记中
<head> <meta http-equiv="refresh" content="0; url=http://blog.e-520.com.cn?id=1" /> </head>
其中content中的0表示延时时间,单位是秒。
- PHP在页面开头
<?php header("Location: http://blog.e-520.com.cn?id=1"); ?>
- JavaScript在链接上直接使用
<a href="http://www.xxx.com" onclick="parent.location.href='http://blog.e-520.com.cn?id=1'; return event.returnValue=false">xxx</a>
这个缺点是搜索引擎机器人一般不处理javascript,而且有些浏览者可能会屏蔽JavaScript。
最新评论