解决苹果手机点击返回键页面不刷新问题

时间:2024-04-15 07:21:22
$(function () {
    var isPageHide = false;
    window.addEventListener(\'pageshow\', function () {
      if (isPageHide) {
        window.location.reload();
      }
    });
    window.addEventListener(\'pagehide\', function () {
      isPageHide = true;
    });
  })