TP5 修改消息提示页面

阅读更多

使用上一篇的文章《验证码》,进行演示,链接如下:

http://onestopweb.iteye.com/blog/2386499

 

使用layer插件来修改TP5的消息提示页面

application\common.php

';
    $str.='';
    return $str;
}

 

application\index\controller\Index.php

fetch();
    }
    public function check($code='')
    {
        $captcha = new \think\captcha\Captcha();
        if(!$captcha->check($code)) {
            return alert('验证码错误','/index.html',5,3);
        }
        else {
            return alert('验证码正确','/index.html',6,3);
        }
    }
}

 

效果图:
TP5 修改消息提示页面_第1张图片
 

或者直接修改 thinkphp\tpl\dispatch_jump.tpl 页面

{__NOLAYOUT__}


    
    跳转提示
    


    

:)

:(

页面自动 跳转 等待时间:

 

 

 

 

 

 

 

 

 

 

  • TP5 修改消息提示页面_第2张图片
  • 大小: 16.5 KB
  • demo.rar (70.4 KB)
  • 下载次数: 0
  • 查看图片附件

你可能感兴趣的:(消息提示页面,TP5消息提示页面,layer)