location.reload()执行刷新当前页面时,在ios手机上正常刷新,在Android手机上无效;
解决方案:
使用window.location.href ,并在url后加时间戳
window.location.href = location.href+'?time='+((new Date()).getTime());
location.reload()执行刷新当前页面时,在ios手机上正常刷新,在Android手机上无效;
解决方案:
使用window.location.href ,并在url后加时间戳
window.location.href = location.href+'?time='+((new Date()).getTime());
本文标题:android h5微信浏览器location.reload()
本文链接:https://www.haomeiwen.com/subject/vjsuvqtx.html
网友评论