第一个页面
<html>
<title></title>
<head></head>

<body>
 <script type="text/javascript">
     window.open('second.htm');
 </script>
</body>
</html>

第二个页面
<html>
<title></title>
<head></head>

<body>
 <input type=button onclick="window.opener.location.reload()" value="刷新" />
</body>
</html>

当点击第二个页面时,第一个页面会自动刷新。

相关文章:

  • 2021-05-21
  • 2022-02-08
  • 2021-05-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-07
  • 2021-11-26
  • 2021-10-07
  • 2021-07-19
  • 2022-02-08
  • 2021-12-13
  • 2021-06-01
相关资源
相似解决方案