码迷,mamicode.com
首页 > 其他好文 > 详细

Layer弹出层关闭后刷新父页面

时间:2016-01-14 15:49:46      阅读:991      评论:0      收藏:0      [点我收藏+]

标签:

API地址:http://layer.layui.com/api.html#end

调用END回调方法:

end - 层销毁后触发的回调

类型:Function,默认:null

无论是确认还是取消,只要层被销毁了,end都会执行,不携带任何参数。

   function updateStock(id) {
        //iframe层
        parent.layer.open({
            type: 2,
            title: ‘修改‘,
            shadeClose: false, //点击遮罩关闭
            shade: 0.8,
            area: [‘30%‘, ‘45%‘],
            maxmin: true,
            closeBtn: 1,
            content: [‘/BusinessActivity/CheckStock/LayerUpdateStock?id=‘ + id, ‘yes‘], //iframe的url,yes是否有滚动条
            //yes: function (index, layero) {
            //    alert(index);
            //    alert(layero);
            //},
            end: function () {
                location.reload();
            }

        });

 

Layer弹出层关闭后刷新父页面

标签:

原文地址:http://www.cnblogs.com/kennyliu/p/5129996.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!