window.history.lengthは、ブラウザの履歴リストの中のURLの数を返すプロパティ。
構文
<script type="text/javascript">
window.history.length;
</script>
window.history.length;
</script>
戻り値
ブラウザの履歴リストの中のURLの数。
サンプル
サンプルの動作について
ブラウザの履歴リストの中のURLの数を表示する。
サンプルAのソースコード
JavaScript
<script type="text/javascript">
document.write( window.history.length );
</script>
document.write( window.history.length );
</script>