您的位置:首页 > Web前端 > JavaScript

当关闭子窗口时刷新父窗口

2005-11-29 12:59 288 查看
父窗口中有数据列表,当对数据进行修改时弹出一子窗口,对数据进行修改,完毕保存后,当关闭子窗口
时,刷新父窗口数据
<script language="javascript">


          function closewin()


          {


             if(event.clientX>document.body.clientWidth&&event.clientY<0||event.altKey) //检测窗口关闭事件


             {


                 self.close();


                 window.opener.location.href=Form1.Hidden1.value;   //不能用window.opener.location.reload(),否则会出提示框


             }


          }
</script>
<body bgColor="darkgray" MS_POSITIONING="GridLayout" onbeforeunload="closewin()";>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  javascript function