ThinkPHP中自定义错误页面和提示页面
发布:smiling 来源: PHP粉丝网 添加日期:2014-04-11 14:17:47 浏览: 评论:0
- <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>
Tags: ThinkPHP 页面 错误
相关文章
- ·ThinkPHP中自定义错误页面和提示页面 (2013-11-15)
- ·ThinkPHP中Ajax返回(2013-11-15)
- ·ThinkPHP中处理表单中注意(2013-11-15)
- ·ThinkPHP中I(),U(),$this->post()等函数(2013-11-15)
- ·ThinkPHP中公共函数路径和配置项路径的映射(2013-11-15)
- ·ThinkPHP中公共配置文件和各自项目中的配置文件组合(2013-11-15)
- ·ThinkPHP在控制器里的javascript代码不能执行解决方法(2013-11-29)
- ·ThinkPHP3.0略缩图不能保存到子目录(2013-12-03)
- ·thinkphp的循环结构(2014-01-10)
- ·thinkphp特殊标签使用(2014-01-10)
- ·thinkphp模板输出汇总(2014-01-10)
- ·thinkphp模板的赋值与替换(2014-01-10)
- ·thinkphp连贯操作(2014-01-10)
- ·thinkphp区间查询、统计查询、SQL直接查询(2014-01-10)
- ·thinkphp的普通查询与表达式查询(2014-01-10)
- ·RBAC类在ThinkPHP中的四种使用方法(2014-01-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)