87,996
社区成员




function RefreshThislist()
{
location.href=window.location.href;
}
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>a</title>
</head>
<body>
当你可以再次点击按钮说明该页面已经刷新过
<input type=button id="b" value="open b" onclick="window.open('b.htm');this.disabled=true;">
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>b</title>
<script defer>
var a = window.opener;
window.open("c.htm");
</script>
</head>
<body>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>c</title>
<script defer>
var b = window.opener;
var a = b.a;
b.close();
a.location = a.location;
</script>
</head>
<body>
</body>
</html>