jsp点击右上角的X关闭子窗口刷新父窗口该如何实现呢?

2024-12-28 09:41:42
推荐回答(2个)
回答1:

你把刷新的功能,写到关闭前面,也就是先刷新,在关闭

回答2:

父页面js:
function btnAdd_onclick() {
window.open("xxx.jsp", "","height=600, width=650, top=100, left=200,z-look=yes,toolbar=yes, menubar=no, scrollbars=yes, resizable=yes ,alwaysRaised=yes,
location=no, status=yes" );
}
function refresh()
{
this.location = this.location;
}

子页面JS:

function close()
{
window.opener.refresh();//重点就在这里刷新
window.focus();
window.opener=null;
window.close();
}
重点是在父页面写一个刷新方法,在子页面通过window.opener.父页面中刷新的方法来实现这个功能。