Availability
JavaScript 1.0
Synopsis
window.historyframe.history
history
Properties
length
This numeric property specifies the number of URLs in the
browser's history list. Since there is no way to determine the
index of the currently displayed document within this list, knowing
the size of this list is not particularly helpful.
Methods
back( )
Goes backward to a previously visited URL.forward( )
Goes forward to a previously visited URL.go( )
Goes to a previously visited URL.
Description
The History object represents the
browsing history of a window -- it maintains a list of recently
visited web pages. For security and privacy reasons, however, the
contents of this list are not accessible to scripts. Although scripts
cannot access the URLs represented by the History object, they can
use the length property to determine the number of
URLs in the list and the back( ),
forward( ), and go( ) methods
to cause the browser to revisit any of the URLs in the array.
Example
The following line performs the same action as clicking a
browser's Back button:
history.back( );
The following performs the same action as clicking the Back button twice:
history.go(-2);
See Also
The history property of the Window object,
Location
•
Table of Contents
•
Index
•
Reviews
•
Examples
•
Reader Reviews
•
Errata
JavaScript: The Definitive Guide, 4th Edition
By
David Flanagan
Publisher
: O'Reilly
Pub Date
: November 2001
ISBN
: 0-596-00048-0
Pages
: 936
Slots
: 1
This fourth edition of the definitive reference to
JavaScript, a scripting language that can be embedded
directly in web pages, covers the latest version of the
language, JavaScript 1.5, as supported by Netscape 6 and
Internet Explorer 6. The book also provides complete
coverage of the W3C DOM standard (Level 1 and Level 2),
while retaining material on the legacy Level 0 DOM for
backward compatibility.