jsp点击右上角的X关闭子窗口刷新父窗口该如何实现呢?
展开全部
你把刷新的功能,写到关闭前面,也就是先刷新,在关闭
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
父页面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.父页面中刷新的方法来实现这个功能。
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.父页面中刷新的方法来实现这个功能。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询