父窗口中有数据列表,当对数据进行修改时弹出一子窗口,对数据进行修改,完毕保存后,当关闭子窗口
时,刷新父窗口数据
<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()";>
时,刷新父窗口数据
<script language="javascript">
</script>
<body bgColor="darkgray" MS_POSITIONING="GridLayout" onbeforeunload="closewin()";>
博客介绍了在父窗口有数据列表,修改数据时弹出子窗口,修改保存后关闭子窗口刷新父窗口数据的方法。给出了JavaScript代码,通过检测窗口关闭事件,使用特定方式刷新父窗口,避免提示框问题。

8718

被折叠的 条评论
为什么被折叠?



