SoFunction
Updated on 2025-04-03

Solve the problem of falling back without refreshing the ios WeChat page

Add the following js to the page that needs to be refreshed after the fallback

$(function () { 
  var isPageHide = false; 
  ('pageshow', function () { 
    if (isPageHide) { 
      (); 
    } 
  }); 
  ('pagehide', function () { 
    isPageHide = true; 
  }); 
}) 

The above article solves the problem of falling back and not refreshing the ios WeChat page is all the content I share with you. I hope it can give you a reference and I hope you can support me more.