history.pushState
現在のページの状態を履歴スタックにプッシュし、アドレスバーのURLを変更します。したがって、戻ると、その状態(渡したオブジェクト)が返されます。
現在、それだけです。新しいページの表示やページタイトルの変更など、その他のページアクションは、ユーザーが行う必要があります。
リンクするW3C仕様は単なるドラフトであり、ブラウザによって実装が異なる場合があります。 たとえば、Firefoxはtitle
パラメータを完全に無視します。
これはpushState
私が私のウェブサイトで使用する簡単な例です。
(function($){
// Use AJAX to load the page, and change the title
function loadPage(sel, p){
$(sel).load(p + ' #content', function(){
document.title = $('#pageData').data('title');
});
}
// When a link is clicked, use AJAX to load that page
// but use pushState to change the URL bar
$(document).on('click', 'a', function(e){
e.preventDefault();
history.pushState({page: this.href}, '', this.href);
loadPage('#frontPage', this.href);
});
// This event is triggered when you visit a page in the history
// like when yu push the "back" button
$(window).on('popstate', function(e){
loadPage('#frontPage', location.pathname);
console.log(e.originalEvent.state);
});
}(jQuery));