跳轉頁面&回到上一頁

1.phpjavascript

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

 

 

2.jsjava

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

 

3.jsthis

<?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(); // 輸出模板url

相關文章
相關標籤/搜索