gxh973121

博客园 首页 新随笔 联系 订阅 管理

要实现功能如下:

父窗口中有数据列表,当对数据进行修改时弹出一子窗口,对数据进行修改,完毕保存后,当关闭子窗口
时,刷新父窗口数据

实现的javascript:

<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()";>
posted on 2005-04-05 18:09  gxh973121  阅读(7207)  评论(3编辑  收藏  举报