微信网页跳转页面常见bug处理

微信网页跳转页面常见bug处理

1.不要直接用a链接直接跳转

2.url后加上时间戳

function gohome() {
      window.location.href = "../home/index.html?t="+new Date().getTime();
    }
原文地址:https://www.cnblogs.com/wangyihong/p/9013511.html