9 个解决方案
#1
什么右上角的XX啊 ? 代码看看
#2
<script language=javascript>
window.top.location.href='父页面‘;window.opener=null;window.close();
</script>
先刷新父页面,在关闭子页面
如果一开始进到父页面时子页面还没打开,那直接刷新父页面就行了
试试吧
window.top.location.href='父页面‘;window.opener=null;window.close();
</script>
先刷新父页面,在关闭子页面
如果一开始进到父页面时子页面还没打开,那直接刷新父页面就行了
试试吧
#3
子页面中写Response.Write("<script>window.opener.location.href = window.opener.location.href;if(window.opener.progressWindow) window.opener.progressWindow.close();window.close();</script>");
#4
var returnValue = window.showModalDialog(url,window,"dialogHeight=350px;dialogWidth=400px;center=yes;status=no;scroll=no;resizable=yes");
window.unLoad = function(){window.dialogArgument.location.reload();};
window.unLoad = function(){window.dialogArgument.location.reload();};
#6
<script language="javascript">
function Method(){
window.opener.location=window.opener.location;
}
</script>
<body onbeforeunload="Method();">
function Method(){
window.opener.location=window.opener.location;
}
</script>
<body onbeforeunload="Method();">
#7
+
#8
子
父
function window.onbeforeunload(){
window.opener.refreshPage();
}
父
function refreshPage(){
window.location.reload();
}
#9
不好意思,以前发的帖现在自己都不知道啥意思了,看来问题没提好。分就给2楼了,谢谢诸位。
#1
什么右上角的XX啊 ? 代码看看
#2
<script language=javascript>
window.top.location.href='父页面‘;window.opener=null;window.close();
</script>
先刷新父页面,在关闭子页面
如果一开始进到父页面时子页面还没打开,那直接刷新父页面就行了
试试吧
window.top.location.href='父页面‘;window.opener=null;window.close();
</script>
先刷新父页面,在关闭子页面
如果一开始进到父页面时子页面还没打开,那直接刷新父页面就行了
试试吧
#3
子页面中写Response.Write("<script>window.opener.location.href = window.opener.location.href;if(window.opener.progressWindow) window.opener.progressWindow.close();window.close();</script>");
#4
var returnValue = window.showModalDialog(url,window,"dialogHeight=350px;dialogWidth=400px;center=yes;status=no;scroll=no;resizable=yes");
window.unLoad = function(){window.dialogArgument.location.reload();};
window.unLoad = function(){window.dialogArgument.location.reload();};
#5
#6
<script language="javascript">
function Method(){
window.opener.location=window.opener.location;
}
</script>
<body onbeforeunload="Method();">
function Method(){
window.opener.location=window.opener.location;
}
</script>
<body onbeforeunload="Method();">
#7
+
#8
子
父
function window.onbeforeunload(){
window.opener.refreshPage();
}
父
function refreshPage(){
window.location.reload();
}
#9
不好意思,以前发的帖现在自己都不知道啥意思了,看来问题没提好。分就给2楼了,谢谢诸位。