1,本弹窗直接跳转父页面:
1 @if(session(‘message‘)) 2 3 <script> 4 window.parent.location.reload(); //刷新父页面 5 var index = parent.layer.getFrameIndex(window.name); //获取窗口索引 6 parent.layer.close(index); // 关闭layer 7 </script> 8 @endif
2,点击关闭弹窗后刷新当前页面:
只需在弹窗运行后添加
end: function(){ //任何对父类页面操作}
1 layer.open({ 2 type: 2, 3 area: [w+‘px‘, h +‘px‘], 4 fix: false, //不固定 5 maxmin: true, 6 shade:0.4, 7 title: title, 8 content: url, 9 end: function(){ 10 window.parent.location.reload(); //刷新父页面 11 } 12 });
时间: 2024-11-05 12:13:06