履歴の数を取得

履歴の数を取得するには、history.lengthプロパティを使用します。

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

構文

var count = history.length;

戻り値

履歴の数を返します。

サンプルコード

JavaScript

if (window.history) {
	console.log(history.length);
}

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