This article mainly introduces the Thinkphp5 combined with layer pop-up window customization operation result page. It has certain reference value. Interested friends can refer to it. I hope it can help everyone.
1 Open the application public file page appliction/common.php and write the following code:
Note: The green background part of the success message is the iframe framework writing method, if it is an ordinary page. Just remove the parent and change it to: self.location.href="'.$url.'" rel="external nofollow" rel="external nofollow"
/** * $msg 待提示的消息 * $url 待跳转的链接 * $icon 这里主要有两个,5和6,代表两种表情(哭和笑) * $time 弹出维持时间(单位秒) */ function alert_success($msg='',$url='',$time=3){ $str='<script type="text/javascript" src="/static/admin/lib/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript" src="/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="'.$url.'" rel="external nofollow" rel="external nofollow" },2000) }); </script>';//主要方法 return $str; } /** * $msg 待提示的消息 * $icon 这里主要有两个,5和6,代表两种表情(哭和笑) * $time 弹出维持时间(单位秒) */ function alert_error($msg='',$time=3){ $str='<script type="text/javascript" src="/static/admin/lib/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript" src="/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 Usage example:
public function test(){ return alert_error('您好,欢迎光顾来到博客园'); } public function test(){ return alert_success('您好,欢迎来到博客园!','http://www.cnblogs.com'); }
3 Effect:
Related recommendations:
layer pop-up plug-in usage tutorial
The above is the detailed content of Thinkphp5 combined with layer pop-up window customization page code sharing. For more information, please follow other related articles on the PHP Chinese website!