ThinkPHP中自定义错误页面和提示页面 - Thinkphp
来源:自学PHP网
时间:2014-11-28 23:17 作者:
阅读:次
[导读] htmlheadmetahttp-equiv=Content-Typecontent=text html;charset=utf-8 title提示消息-ThinkPHP titlestyletype=text css...
ThinkPHP中自定义错误页面和提示页面
- <html>
- <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">
- <div style="width:100%;text-align:left;padding-left:10px;padding-right:10px">
- <?php echo $e['message']; ?>
- </div>
- <p style="font: italic bold 2cm cursive,serif; color:red">
- ×
- </p>
-
- <p>
- 在( <span id="sec" style="color:blue;font-weight:bold">3</span> )秒后自动跳转,或直接点击 <a href="javascript:window.location='<?php echo __APP__;?>'">这里</a> 跳转<br>
- <span style="display:block;text-decoration:underline;cursor:pointer;line-height:25px" onclick="stop(this)">停止</span>
- </p>
- </div>
- <script>
- var seco=document.getElementByIdx_x("sec");
- var time=3;
- var tt=setInterval(function(){
- time--;
- seco.innerHTML=time;
- if(time<=0){
- window.location='<?php echo __APP__;?>'
- return;
- }
- }, 1000);
- function stop(obj){
- clearInterval(tt);
- obj.style.display="none";
- }
- </script>
- </body>
- </html>
|