JavaScript Reference/Javascript Properties/length history

Материал из Web эксперт
Перейти к: навигация, поиск

"length" Example

   <source lang="javascript">
   

<html> <body> <button onclick="alert(window.history.length);">History Length</button> </body> </html>


     </source>
   
  


"length" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |history | +----------------+--------------------------------------------------------------+

     </source>
   
  


"length" Syntax and Note

   <source lang="javascript">

Note: Read-only property. Returns the number of stored URLs in the history object.

Syntax:

history.length


     </source>