首页 > 代码库 > 自己收藏-javascript用window.open的子窗口关闭自己并且刷新父窗口
自己收藏-javascript用window.open的子窗口关闭自己并且刷新父窗口
function closeMeAndReloadParent()
{
opener.location.reload();
window.close();
}
一种在父窗口中得知window.open()出的子窗口关闭事件的方法
<HTML><BODY>
<P> </P>
<form name=fm_Info>
<input type=text name=txtValue>
</form>
<script language=javascript>
var timer
var winOpen
function IfWindowClosed() {
if (winOpen.closed == true) { document.fm_Info.txtValue.value="http://www.mamicode.com/child closed"
window.clearInterval(timer)
}
}
</script>
<input type=button name=btnOpen value=http://www.mamicode.com/open>
<script language=javascript for=btnOpen event=onclick>
document.fm_Info.txtValue.value=""
winOpen=window.open("child.htm","","toolbar=no, location=no, directories=no, status=no, menubar=no" )
timer=window.setInterval("IfWindowClosed()",500);
</script>
</BODY></HTML>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。