微信网页跳转页面常见bug处理
时间:2018-05-09 14:44:09
收藏:0
阅读:213
微信网页跳转页面常见bug处理
1.不要直接用a链接直接跳转
2.url后加上时间戳
function gohome() { window.location.href = "../home/index.html?t="+new Date().getTime(); }
评论(0)