1 2 3 4 5 6 7 8 9 10 |
(function(history){ var pushState = history.pushState; history.pushState = function(state, title, url) { // 不执行原有操作,可以在这里添加自定义逻辑 // ... // 返回false可以阻止默认行为 return false; }; })(window.history); |