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