84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
经测试,QQ浏览器正常,chrome、安卓自带浏览器、微信浏览器都是出现这个问题,连body的background-color都是未生效。目前的想法是拦截浏览器自带返回事件,强制跳转到document.referrer。但拦截浏览器自带返回事件,这个没有做到。请教这个问题是原因,及解决方法。先谢。
认证0级讲师
1、拦截浏览器自带返回事件,失败。2、禁止页面缓存,失败,因为当前会话未结束。3、改变history记录值,成功。var stateObj = { page: "show" };history.pushState(stateObj, "title",window.location.href.indexOf("_r=")>0?window.location.href: (window.location.href+"&_r="+Math.random()));
1、拦截浏览器自带返回事件,失败。
2、禁止页面缓存,失败,因为当前会话未结束。
3、改变history记录值,成功。
var stateObj = { page: "show" };
history.pushState(stateObj, "title",window.location.href.indexOf("_r=")>0?window.location.href: (window.location.href+"&_r="+Math.random()));