經過JS攔截 pushState 和 replaceState 事件

history.pushState 和 history.replaceState 能夠在不刷新當前頁面的狀況下更改URL,可是這樣就沒法獲取經過AJAX獲得的新頁面的內容了。
雖然各類HTML5文檔說 window.onpopstate 事件能夠攔截 pushState 的消息,但在實際的測試中, onpopstate 根本沒有任何做用,沒法攔截 pushState 的消息。app

通過Google一番,才找到了正確獲取 pushState 事件的代碼
https://stackoverflow.com/a/25673911函數

 

// Add this:
var _wr = function(type) {
    var orig = history[type];
    return function() {
        var rv = orig.apply(this, arguments);
        var e = new Event(type);
        e.arguments = arguments;
        window.dispatchEvent(e);
        return rv;
    };
};
history.pushState = _wr('pushState');
history.replaceState = _wr('replaceState');

// Use it like this:
window.addEventListener('pushState', function(e) {
    console.warn('THEY DID IT AGAIN!');
});
window.addEventListener('replaceState', function(e) {
    console.warn('THEY DID IT AGAIN!');
});

 

這段代碼改寫了 history 中原來的函數,而後本身激活一個事件
這樣就能夠解決 pushState 沒法激活事件的問題了
另外記得最好將這段代碼放在文檔加載前執行測試

相關文章
相關標籤/搜索