您好,登錄后才能下訂單哦!
這篇文章主要介紹基于PHP的跳轉(zhuǎn)提示框怎么弄,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
示例講解:
在基礎(chǔ)控制器類(lèi)中:Conrtoller.class.php
<?php /** * 基礎(chǔ)控制器類(lèi) */ class Controller { /** * 跳轉(zhuǎn) * $url 目標(biāo)url * $info 提示信息 * $time 等待時(shí)間(單位秒) */ protected function jump($url,$info=NULL,$time=3) { //判斷是立即跳轉(zhuǎn)還是刷新跳轉(zhuǎn) if(is_null($info)) { //立即跳轉(zhuǎn) header('location:'. $url); die; } else { //刷新跳轉(zhuǎn),給出提示 echo <<<TIAOZHUAN <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>提示信息</title> <style type='text/css'> * {margin:0; padding:0;} div {width:390px; height:287px; border:1px #09C solid; position:absolute; left:50%; margin-left:-195px; top:10%;} div h3 {width:100%; height:30px; line-height:30px; background-color:#09C; font-size:14px; color:#FFF; text-indent:10px;} div p {height:120px; line-height:120px; text-align:center;} div p strong {font-size:26px;} </style> <div> <h3>提示信息</h3> <p> <strong>$info</strong><br /> 頁(yè)面在<span id="second">$time</span>秒后會(huì)自動(dòng)跳轉(zhuǎn),或點(diǎn)擊<a id="tiao" href="$url">立即跳轉(zhuǎn)</a> </p> </div> <script type="text/javascript"> var url = document.getElementById('tiao').href; function daoshu(){ var scd = document.getElementById('second'); var time = --scd.innerHTML; if(time<=0){ window.location.href = url; clearInterval(mytime); } } var mytime = setInterval("daoshu()",1000); </script> TIAOZHUAN; die; } } }
在MVC的自動(dòng)加載中,將Controller.class.php進(jìn)行自動(dòng)加載注冊(cè)
通過(guò)不同控制器類(lèi)繼承上面的Controller.class.php基礎(chǔ)控制器類(lèi)后,就可以調(diào)用定義的跳轉(zhuǎn)提示。
<?php /** * 后臺(tái)管理員控制器(登錄、注銷(xiāo)、管理員的增刪改查等) */ class AdminController extends Controller { /** * 展示登錄表單動(dòng)作 */ public function loginAction() { // 載入當(dāng)前的視圖文件 $this->display('login.html'); } /** * 后臺(tái)注銷(xiāo)功能 */ public function logoutAction() { @session_start(); // 刪除相關(guān)會(huì)話(huà)數(shù)據(jù) unset($_SESSION['adminInfo']); // 刪除會(huì)話(huà)數(shù)據(jù)區(qū) session_destroy(); // 立即跳轉(zhuǎn)到登錄頁(yè)面 $this->jump('index.php?c=Admin&a=login','您已退出后臺(tái)登錄!'); } }
當(dāng)然,這里是在MVC中實(shí)現(xiàn)的,你也可以把jump()單獨(dú)提出來(lái)進(jìn)行使用。
附上一個(gè)效果圖:
以上是基于PHP的跳轉(zhuǎn)提示框怎么弄的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。