您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“ThinkPHP中如何自定義錯(cuò)誤頁面和提示頁面”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“ThinkPHP中如何自定義錯(cuò)誤頁面和提示頁面”吧!
在ThinkPHP中有兩個(gè)方法時(shí)提示錯(cuò)誤頁面 _404('錯(cuò)誤信息','跳轉(zhuǎn)的地址');halt('提示信息');
這兩個(gè)函數(shù)都可以自定義錯(cuò)誤頁面在配置文件中加
復(fù)制代碼 代碼如下:
'TMPL_EXCEPTION_FILE'=>'./Public/Tpl/error.html'
這樣每次就會跳轉(zhuǎn)到這個(gè)頁面。
下面是我定制的錯(cuò)誤頁面
復(fù)制代碼 代碼如下:
在( 3 )秒后自動跳轉(zhuǎn),或直接點(diǎn)擊 這里 跳轉(zhuǎn) 停止
$this->success('錯(cuò)誤信息','跳轉(zhuǎn)的地址(最好用U())',時(shí)間);
$this->error();
下面是我改變ThinkPHP中的提示頁面
復(fù)制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>提示消息 - ThinkPHP</title>
<style type="text/css">
body { font: 75% Arail; text-align: center; }
#notice { width: 300px; background: #FFF; border: 1px solid #BBB; background: #EEE; padding: 3px;
position: absolute; left: 50%; top: 50%; margin-left: -155px; margin-top: -100px; }
#notice div { background: #FFF; padding: 30px 0 20px; font-size: 1.2em; font-weight:bold }
#notice p { background: #FFF; margin: 0; padding: 0 0 20px; }
a { color: #f00} a:hover { text-decoration: none; }
</style>
</head>
<body>
<div id="notice">
<present name="message">
<p >
ok
</p>
<div class="success" >
<?php echo($message); ?>
</div>
<else/>
<p >
×
</p>
<div class="error" >
</div>
</present>
<p>
在( <span id="sec" ><?php echo($waitSecond); ?></span> )秒后自動跳轉(zhuǎn),或直接點(diǎn)擊 <a href="javascript:window.location='<?php echo($jumpUrl); ?>'">這里</a> 跳轉(zhuǎn)<br>
<span onclick="stop(this)">停止</span>
</p>
</div>
<script>
var seco=document.getElementByIdx_x("sec");
var time=<?php echo($waitSecond); ?>;
var tt=setInterval(function(){
time--;
seco.innerHTML=time;
if(time<=0){
window.location='<?php echo($jumpUrl); ?>'
return;
}
}, 1000);
function stop(obj){
clearInterval(tt);
obj.style.display="none";
}
</script>
</body>
</html>
到此,相信大家對“ThinkPHP中如何自定義錯(cuò)誤頁面和提示頁面”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。