android h5微信浏览器location.reload()刷新页面无效

Posted on 2020-04-26 14:32  郑小胖  阅读(970)  评论(0编辑  收藏  举报
location.reload()执行刷新当前页面时,在ios手机上正常刷新,在Android手机上无效;
解决方案:
使用window.location.href ,并在url后加时间戳
window.location.href = location.href+'?time='+((new Date()).getTime());(亲测小米5s有效)