履歴の変化状態を取得

履歴の変化状態を取得するには、history.stateプロパティを使用します。

  • ※ IE9以下は対応していません。

構文

var currentState = history.state;

戻り値

現在の履歴状態を返します。

サンプルコード

JavaScript

if (window.history && window.history.state) {
	console.log(history.state);
}

JavaScript逆引きリファレンス一覧へ戻る