经测试,QQ浏览器正常,chrome、安卓自带浏览器、微信浏览器都是出现这个问题,连body的background-color都是未生效。
目前的想法是拦截浏览器自带返回事件,强制跳转到document.referrer。但拦截浏览器自带返回事件,这个没有做到。
请教这个问题是原因,及解决方法。先谢。
高洛峰2017-04-17 11:20:03
1. Interception of the browser’s own return event failed.
2. Disable page caching, failed because the current session has not ended.
3. Change the history record value, successful.
var stateObj = { page: "show" };
history.pushState(stateObj, "title",window.location.href.indexOf("_r=")>0?window.location.href: (window.location.href+"&_r="+Math.random()));