Press "Enter" to skip to content

Layui弹出窗口关闭和上级表格刷新

父页面

<table class="layui-table" id="myTable" lay-filter="laytable"></table>
function layerData(url, type, propsName)
{
            var urlType = url + type;
            $.get(urlType, function(str){
                layer.open({
                    type: 1,
                    area: ['80%', '80%'],
                    scrollbar:false,
                    title:'创建' + propsName,
                    content: str, //注意,如果str是object,那么需要字符拼接。
                    end:function(){
                        tabInit(1);//弹出层销毁时刷新操作
                    }
                });
            });
   }

子页面

                layer.alert(operType+"成功!", {icon:1}, function(){
                    // 获得frame索引
                    layer.closeAll();
                });

发表评论