我正在使用以下网址 A 打开一个弹出窗口 B :
this.Page.ClientScript.RegisterStartupScript(
this.GetType(),
"JavaScript",
"myWindow=window.open('B.aspx',
'WindowName',
'copyhistory=no,
width=800,
height=300,
top=150,
left=50,
resizable=1,
scrollbars=1');
myWindow.focus();",
true
);
每当弹出窗口 B 发生变化时,我想刷新页面 A 。
答案 0 :(得分:1)
有很多方法可以做到:
<script>
window.onunload = refreshParent;
function refreshParent() {
window.opener.location.reload();
}
</script>
<script language="JavaScript">
<!--
function refreshParent() {
window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow)
{
window.opener.progressWindow.close()
}
window.close();
}
//-->
</script>
来源:
答案 1 :(得分:0)
将refreshParent
用户操作调用为:
function refreshParent() {
window.opener.location.href = window.opener.location.href;
}