2016 - 2024

感恩一路有你

js重定向和转发 PHP封装的一个支持HTML、JS、PHP重定向的多功能跳转函数?

浏览量:1362 时间:2021-03-12 21:22:07 作者:admin

PHP封装的一个支持HTML、JS、PHP重定向的多功能跳转函数?

  PHP实现页面跳转的方式很多,可以使用header函数实现重定向,可以利用HTML Meta标签功能,以及js等来实现。示例如下:

1.PHP header函数:

<?php

header("Content-type: text/html charset=utf-8")

//示例跳转网址 $url="http://www.chinawinxp.com"

$url="

//重定向浏览器

header("Location: {$url}")

//退出

exit

?>

2.使用HTML中Meta标签实现跳转,content:跳转秒数(多少秒之后进行页面跳转);url:跳转地址。

<html>

<head>

<meta http-equiv="refresh" content ="1 url=<?php echo $url?>">

</head>

<body>

页面将在10秒后进行跳转!!!

</body>

</html>

3.利用JS进行跳转;

<?php

//示例跳转网址 $url="http://www.chinawinxp.com"

$url="

echo( "<script language="javascript" type="text/javascript">")

//重定向

echo ("window.location.href={$url}")

echo ("</script>")

?>

如何实现jsp本页面跳转?

1.Jsp页面跳转的第一种方式:提交表单

代码如下:

<!--第一种跳转方式:提交表单-->

<form name="form" method="post" action="page2.jsp">

<input type="submit" value="跳转1">

</form>


2.Jsp页面跳转的第二种方式:Javascript实现

代码如下:

<script type="text/javascript">

function next(){

window.location = "page2.jsp" }

</script>


3.Jsp页面跳转的第三种方式:重定向分

代码如下:

<!--重定向-->

<% //1.

response.sendRedirect("page2.jsp")


%>

js重定向和转发 js重定向页面 前端重定向

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。