关闭layer弹出层,刷新父窗口 - 官方没有说这个, 但是很有用。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关闭layer弹出层,刷新父窗口 - 官方没有说这个, 但是很有用。相关的知识,希望对你有一定的参考价值。
关闭layer弹出层,刷新父窗口,火狐提示:NS_ERROR_XPC_SECURITY_MANAGER_V错误
原代码如 下:
window.parent.location.reload();
//window.parent.location.href="/file/list"
var index = parent.layer.getFrameIndex(window.name);
parent.layer.close(index);
解决方案:
利用end函数
layer.open({
type: 2,
title: ‘编辑‘,
skin: ‘layui-layer-rim‘, //加上边框
area: [‘420px‘, ‘350px‘], //宽高
end : function () {
location.reload();
},
content: ‘/file/toEdit‘
});
关闭layer弹出层,刷新父窗口,发生NS_ERROR_XPC_SECURITY_MANAGER_V
以上是关于关闭layer弹出层,刷新父窗口 - 官方没有说这个, 但是很有用。的主要内容,如果未能解决你的问题,请参考以下文章