layer 是一款非常优秀的弹窗控件,最近在使用 layer 做开发的时候遇到一个需求:layer 子窗体关闭后向父窗体传值,然后父窗体根据传值决定下一步操作。
如果只是单纯的子窗体关闭后,父窗体进行相应操作那么我们可以使用父窗体的 end 方法:
示例 1,子窗体关闭后父窗体刷新:
子窗体代码:
window.parent.layer.closeAll();
父窗体代码:
$("#new").on('click',function(){
var url = "{:url('index/file/create')}";
layer.open({
type: 2,
title: '新增案卷',
shadeClose: true,
shade: 0.5,
area: ['380px', '300px'],
content: [url],
end: function () {
location.reload();
}
});
})
上面代码在子窗体中调用父窗体的关闭代码,然后利用父窗体的 end 方法实现响应,达到子窗体关闭后父窗体做出响应。
但是如果我们有更高的需求,比如说根据子窗体关闭时传的值来决定父窗体是刷新还是跳转,那怎么办呢?
示例 2,子窗体关闭后向父窗体传值,然后父窗体根据传值决定下一步操作:
子窗体代码:
parent.callback(data.data);
window.parent.layer.closeAll();
父窗体代码:
//layer 子窗体控制父窗体
function callback(id){
if(id>0){
var url = "{:url('index/file/archives')}?id="+id;
location.href = url;
}else{
location.reload();
}
}
上面代码在子窗体中先调用父窗体定义的回调函数,然后在父窗体定义对应的回调函数即可。
声明:本文为原创文章,版权归主机之家测评所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 微信开发:redirect_url 参数错误08/24
- ♥ apache:configuration error: couldn't perform authentication. AuthType not set!: /08/26
- ♥ php 生成服务器信息函数08/24
- ♥ 基于 Docker 搭建 Nginx 服务器 在 Docker 中部署 Nginx 服务器08/26
- ♥ Linux 实用一键脚本,含 BBR、rclone/fclone/6pan-cli/aria2cli/youtube-dl、aria2、网盘挂载等等02/02
- ♥ Illegal string offset 'xxx'的解决办法08/27