首页 > 代码库 > 【Thinkphp5】结合layer弹窗 定制操作结果页面
【Thinkphp5】结合layer弹窗 定制操作结果页面
1 打开应用公共文件页面 appliction/common.php,编写以下代码
注意: 成功消息的绿色背景部分是iframe 框架写法,如果是普通页面。就吧parent去除,改为: self.location.href="http://www.mamicode.com/‘.$url.‘"
/** * $msg 待提示的消息 * $url 待跳转的链接 * $icon 这里主要有两个,5和6,代表两种表情(哭和笑) * $time 弹出维持时间(单位秒) */ function alert_success($msg=‘‘,$url=‘‘,$time=3){ $str=‘<script type="text/javascript" src="http://www.mamicode.com/static/admin/lib/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript" src="http://www.mamicode.com/static/admin/lib/layer/2.4/layer.js"></script>‘;//加载jquery和layer $str.=‘<script> $(function(){ layer.msg("‘.$msg.‘",{icon:"6",time:‘.($time*1000).‘}); setTimeout(function(){ self.parent.location.href="http://www.mamicode.com/‘.$url.‘" },2000) }); </script>‘;//主要方法 return $str; } /** * $msg 待提示的消息 * $icon 这里主要有两个,5和6,代表两种表情(哭和笑) * $time 弹出维持时间(单位秒) */ function alert_error($msg=‘‘,$time=3){ $str=‘<script type="text/javascript" src="http://www.mamicode.com/static/admin/lib/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript" src="http://www.mamicode.com/static/admin/lib/layer/2.4/layer.js"></script>‘;//加载jquery和layer $str.=‘<script> $(function(){ layer.msg("‘.$msg.‘",{icon:"5",time:‘.($time*1000).‘}); setTimeout(function(){ window.history.go(-1); },2000) }); </script>‘;//主要方法 return $str; }
2 使用实例:
public function test(){ return alert_error(‘您好,欢迎来到代码改变世界‘); } public function test(){ return alert_success(‘您好,欢迎来到代码改变世界!‘,‘http://www.cnblogs.com‘); }
3 效果:
【Thinkphp5】结合layer弹窗 定制操作结果页面
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。