微信浏览器内 H5 返回并刷新
2020-04-03 本文已影响0人
fourn熊能
话不多说,亲测管用
var isPageHide = false;
window.addEventListener('pageshow', function () {
if (isPageHide) {
window.location.reload();
}
});
window.addEventListener('pagehide', function () {
isPageHide = true;
});