function JsMod(htmlurl,tmpWidth,tmpHeight){
htmlurl=getRandomUrl(htmlurl);
var winObj = window.open(htmlurl, "newwindow", "height="+tmpHeight+",width="+tmpWidth);
var loop = setInterval(function() {
if(winObj.closed) {
clearInterval(loop);
parent.location.reload();
}
}, 1);
}
相关文章
- 08-13WPF 子窗体关闭,刷新父窗体
- 08-13关闭open页面时刷新父页面列表
- 08-13window.open 打开vue路由,并监听页面关闭事件,监听子父页面消息传递
- 08-13winform打开子窗体后,在子窗体中刷新父窗体,或者关闭子窗体刷新父窗体
- 08-13VUE调用子窗口弹窗或组件弹窗,关闭弹窗刷新父级页面主页面,通过this.$emit来实现
- 08-13js window.open的页面里关闭当前窗口,刷新原来的窗口
- 08-13window.open子窗口获取父窗口的值
- 08-13WPF 子窗体关闭,刷新父窗体
- 08-13window.open关闭后刷新父页面
- 08-13子页面操作完成后,刷新父页面