A页面调到B页面,B页面关闭时A页面刷新

A.htmljavascript

<html>
<head>
<script type="text/javascript">
alert("refresh");
</script>
</head>
<body>
<a onclick="javascript:window.open('b.html');">OpenNewWindow</a> 
<body>
</html>

B.htmlhtml

<html>
<head>
</head>
<body onUnload="javascript:opener.location.href='a.html';"> 
<a onclick="javascript:window.close(this)">[CloseWindow]</a> 
</body> 
</html>
相关文章
相关标签/搜索