关闭子页面刷新父页面
项目中经常用到编辑子页面后刷新父页面,在此记录下来。
分三步:
1,在父页面中要添加页面刷新方法
function refresh() {
this.location = this.location;
}
打开子页面时要用window.open方法,
window.open('a.spx','编辑','width=400,height=600,toolbar=0,scrollbars=2,top=200,left=200');
2,调用父页面中刷新方法
window.opener.refresh();window.opener=null;
3, 关闭子页面调用window.close方法
window.close();
作者:逐帆
出处:http://www.cnblogs.com/langhua/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。