履歴の変化状態を取得
履歴の変化状態を取得するには、history.state
プロパティを使用します。
- ※ IE9以下は対応していません。
構文
var currentState = history.state;
戻り値
現在の履歴状態を返します。
サンプルコード
JavaScript
if (window.history && window.history.state) {
console.log(history.state);
}
履歴の変化状態を取得するには、history.state
プロパティを使用します。
var currentState = history.state;
現在の履歴状態を返します。
JavaScript
if (window.history && window.history.state) {
console.log(history.state);
}