php 提交表单 关闭layer弹窗iframe的实例讲解

前端之家收集整理的这篇文章主要介绍了php 提交表单 关闭layer弹窗iframe的实例讲解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

介绍一款非常好用的前端弹窗插件

layer 官网地址:nofollow" target="_blank" href="http://layer.layui.com/">http://layer.layui.com/

根据官方的API:layer的iframe弹窗

PHP;"> //iframe层-父子操作 layer.open({ type: 2,area: ['700px','530px'],fix: false,//不固定 maxmin: true,content: 'test/iframe.html' });

这里以PHP开发为例 演示如何 提交表单后自动关闭layer弹窗

(1)弹出layer编辑框 :

PHP;"> function edit(id){ if(id==null||id==''||id=='undefined'){ alert('操作编号为空,请联系管理员'); }

layer.open({
type: 2,//不固定
maxmin: true,content: 'index.PHP?m=content&c=meiti&a=edit_paiqi&id='+id
});
}

(2)编辑页面主要代码

PHP;">

(3)PHP后台保存数据并指向一个关闭layer窗口的方法

update($insertinfo,array("id"=>$id)); if($datas){ 关闭窗口方法 } }else{ $datas = $paiqi_db->select(array("id"=>$id)); $template = "edit_config_paiqi"; include $this->admin_tpl($template); } }
admin_tpl($template); }

(4)关闭窗口并刷新父窗口页面的关键代码

PHP;"> $(function(){ parent.location.reload();//刷新父窗口 parent.layer.closeAll();//关闭所有layer窗口 });

注意:

页面需要加载layer需要的js库才能使用layer方法

以上这篇PHP 提交表单 关闭layer弹窗iframe的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/php/15739.html

猜你在找的PHP相关文章