微信IOS访问页面,点击跳转,返回页面空白,手势动一下内容就出来了。
是微信IOS的缓存的原因,且页面使用了rem导致。
解决办法,在页面中针对IOS做一次hack,重置页面的font-size,让页面渲染出新的内容
if(navigator.userAgent.indexOf("iPhone")>=0) {
// 针对IOS的hack
var FONTSIZE = parseFloat(window.getComputedStyle(document.documentElement).fontSize);
var doSomething = function() {
document.documentElement.style.fontSize = (FONTSIZE + 1) + "px";
setTimeout(function() {
document.documentElement.style.fontSize = FONTSIZE + "px";
}, 0);
}
'complete' == document.readyState ? doSomething() : document.addEventListener('DOMContentLoaded', doSomething);
}
原文链接:https://blog.csdn.net/lqyygyss/article/details/90715784