网页跳转的多种方式

Posted JDbeyond

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页跳转的多种方式相关的知识,希望对你有一定的参考价值。

通用

Header函数

 

 header("Location: http://www.guanwei.org"); exit;

header(\'Refresh:3,Url=other.php\');die;

 

Meta标签

 

< meta http-equiv="refresh" content="1;url=http://www.guanwei.org">

 

Js跳转

 

$url = "http://www.guanwei.org";

echo "<script language=\'javascript\' type=\'text/javascript\'>";

echo "window.location.href=\'$url\'";

echo "</script>";

 

 

 

TP中的跳转

成功和失败跳转

 

if($newid){

     //成功

     $this -> success(\'成功\',U(),1);

}else{

     //失败,给本身页面跳转

     $this -> error(\'添加失败\',U(),2);

}

重定向跳转

 

$this -> redirect(\'Index/index\');

redirect方法的参数用法和U函数的用法一致

 

以上是关于网页跳转的多种方式的主要内容,如果未能解决你的问题,请参考以下文章

网页中转跳转的几种方式

Angular中实现页面跳转的两个方法

实现跳转的几种法式

JQuery实现网页的跳转

php程序开发之实现网页跳转

jsp页面放到webroot或web-inf下面的区别