其他分享
首页 > 其他分享> > 2021-07-21

2021-07-21

作者:互联网

目录

一、场景说明

二、功能作用及效果预览

2.1打开新页面 - window.open方法打开的新页面

2.2弹窗(包括iframe)

第一种:

第二种:


一、场景说明

使用场景的介绍

父页面打开子页面,子页面操作完成后,需要刷新父页面

二、功能作用及效果预览

分以下两种情况:

2.1打开新页面 - window.open方法打开的新页面

调用的刷新方法

if (window.opener != undefined && window.opener != null) {
    window.opener.location.reload();
}

2.2弹窗(包括iframe)

第一种:

if (window.parent != undefined && window.parent != null) {
    window.parent.location.reload();
}

第二种:

 

if(top.window.upload){
    top.window.upload.frames.location.reload();
}

 

标签:07,parent,location,21,新页面,window,opener,2021,页面
来源: https://blog.csdn.net/weixin_43846454/article/details/118977916