父窗口:<script>
   window.open("b.html");
</script>
子窗口:<script>
  function refresh(){
      window.opener.location.reload();
  }
</script>
<input type=button onclick="refresh();" value='刷新父窗口'>