跳转页面&回到上一页

Posted 会飞的鹏

tags:

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

1.php

<?php
header(‘Location:2.php‘); //echo不能在其前面
echo ‘1‘;

 

 

2.js

<?php
echo ‘2‘;
echo ‘<meta http-equiv="refresh" content="10;url=1.php">‘;

 

3.js

<?php
echo ‘4‘;
echo "<script>location=‘1.php‘;</script>";
echo ‘3‘;
//echo "<script>location.href=‘1.php‘;</script>"; 也行

//回到上一页
//echo "<script type="text/javascript">history.back();</script>";
//回到上两页
//echo "<script type="text/javascript">history.go(-2);</script>";

$User = M(‘User‘); // 实例化User对象
$count = $User->where(‘status=1‘)->count();// 查询满足要求的总记录数
$Page = new \Think\Page($count,25);// 实例化分页类 传入总记录数和每页显示的记录数(25)
$show = $Page->show();// 分页显示输出// 进行分页数据查询 注意limit方法的参数要使用Page类的属性
$list = $User->where(‘status=1‘)->order(‘create_time‘)->limit($Page->firstRow.‘,‘.$Page->listRows)->select();$this->assign(‘list‘,$list);// 赋值数据集
$this->assign(‘page‘,$show);// 赋值分页输出
$this->display(); // 输出模板

以上是关于跳转页面&回到上一页的主要内容,如果未能解决你的问题,请参考以下文章

vue列表页跳转到列表详情页再返回到列表页, 页面不刷新保持原来的状态

php分页跳转

使用session处理用户搜索后数据的上一页和下一页跳转

mui顶部选项卡(可左右滑动)分页跳转

如何在 SwiftUI 中从一个详情页跳转到另一个详情页并返回列表页?

js如何判断页面是从特定页面跳转过来的