function test(){

  var winObj = window.open(URL);

  var loop = setInterval(function(){

    if(winObj.closed){

      clearInterval(loop);

      parent.location.reload();

    }

  },1);

}

相关文章:

  • 2022-12-23
  • 2021-09-03
  • 2022-12-23
  • 2021-06-01
  • 2022-12-23
  • 2022-01-12
  • 2021-12-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-09
  • 2021-08-07
相关资源
相似解决方案