JS打开新窗口,关闭本页刷新父页面

来源:互联网 发布:数据之美 邱南森 pdf 编辑:程序博客网 时间:2024/05/16 12:16

打开新窗口 

window.open("xxx.jsp","newwindow", "height=400, width=650, top=200,left=200,toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no");

 

刷新父页面

window.opener.location.reload();

关闭本窗口
  window.close();

原创粉丝点击