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()));
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()));