需求:在关闭弹框的时候,刷新父页面的内容,弹框没有确定和取消的按钮,只有右上方的叉号。实现:在父页面里掉子弹框的地方更改为下面代码:
function importFun(title, url, w, h) {
// layer_show(title, url, $(window).width() * 0.88, $(window).height() * 0.88);
layer.open({
title:title,
type: 2,
maxmin: true, //开启最大化最小化按钮
content: url, //这里content是一个普通的String
area:['90%', '88%'],
cancel: function(){
// 右上角关闭事件的逻辑
location.reload(); // 刷新父页面
}
});
}