页面刷新问题
在A页面中打开一个B页面,当关闭B页面时,自动刷新A页面。
[此贴子已经被作者于2006-12-31 18:57:40编辑过]
我的A页面代码为:
<script type="text/javascript">
var oWin;
function winReload() {
if (oWin.closed)
{
location.reload(); //为什么要这样检查?请楼主自行理解后思考
}
}
function winOpen() {
oWin=window.open("b.asp","B页面");
}
</script>
<script language=javascript>
function open(){
alert("欢迎光临!")}
</script>
<html>
<head>
<title>A页面</title>
</head>
<body onload=open()>
<a href="b.asp" target='_blank'>打开B页面</a>
</body>
</html>
B页面的代码为:
<script type="text/javascript">
//onunload事件,在页面被卸载后发生。注意,这里是指卸载,所以并不只是是页面关闭就是卸载,同样页面刷新,也同样会发生onunload事件
window.onunload=function() {
opener.location.Reload();
}
</script>
<html>
<head>
<title>
B页面已经打开
</title>
</head>
<body>
</body>
</html>
为什么报错呢?