Home > Article > Backend Development > Thinkphp5 combines layer pop-ups to customize the operation result page
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.
The example of this article is to share with everyone the Thinkphp5 combined with layer pop-up window. The specific code of the window customization page is for your reference. The specific content is as follows
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 iframe frame 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:
Thinkphp5 PHPExcel implements the function of batch uploading table data
The steps for deploying the thinkphp5 project on the cloud virtual host are detailed
The above is the detailed content of Thinkphp5 combines layer pop-ups to customize the operation result page. For more information, please follow other related articles on the PHP Chinese website!