标签:content 没有 skin security 弹出层 oca ram http manager
关闭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弹出层,刷新父窗口 - 官方没有说这个, 但是很有用。
标签:content 没有 skin security 弹出层 oca ram http manager
原文地址:http://www.cnblogs.com/wuoshiwzm/p/6553241.html