代码改变世界

子窗体刷新父窗体

2005-12-16 13:27  努力学习的小熊  阅读(2544)  评论(1编辑  收藏  举报
        parent.htm页面
 1<script language="JavaScript">
 2<!--
 3function cd()
 4{
 5    win=window.open("son.htm","win","width=200,height=200");
 6}

 7//-->
 8</script>
 9<input type="button" value="子页面" onclick="cd();">
10<p>
11<input type="text" name="">
    son.htm页面
 1<title>子页面</title>
 2<script language="JavaScript">
 3<!--
 4function reflesh()
 5{
 6
 7
 8    window.opener.opener=null;window.opener.location.reload();  //实现父窗体刷新
 9//    window.opener.opener=null;window.opener.navigate('parent.htm'); //实现父窗体重新加载
10}

11//-->
12</script>
13<input type="button" value="刷新" onclick="reflesh();">