parent.htm页面
1
<script language="JavaScript">
2
<!--
3
function 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页面
2

3

4



5

6

7

8

9

10

11

1
<title>子页面</title>
2
<script language="JavaScript">
3
<!--
4
function 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();">

2

3

4

5



6

7

8

9

10

11

12

13

转载于:https://blog.51cto.com/bearstudyhard/297833