1 定时器 + cookie

//页面1

utils.cookie.set('refreshgroup', 1);

//页面2

var timer = setInterval(function (){
    if(utils.cookie.get('refreshgroup') == 1){
         $('[data-module="group"]').trigger("click");
          utils.cookie.set('refreshgroup', 0);
          clearInterval(timer);
     }
} ,500);

 2 winow.postMessage()

相关文章:

  • 2022-12-23
  • 2021-12-28
  • 2022-01-26
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2022-12-23
猜你喜欢
  • 2022-02-26
  • 2022-12-23
  • 2022-12-23
  • 2021-06-09
  • 2022-01-30
相关资源
相似解决方案