History : History « History « JavaScript Tutorial

JavaScript Tutorial
1. Language Basics
2. Operators
3. Statement
4. Development
5. Number Data Type
6. String
7. Function
8. Global
9. Math
10. Form
11. Array
12. Date
13. Dialogs
14. Document
15. Event
16. Location
17. Navigator
18. Screen
19. Window
20. History
21. HTML Tags
22. Style
23. DOM Node
24. Drag Drop
25. Object Oriented
26. Regular Expressions
27. XML
28. GUI Components
29. Dojo toolkit
30. jQuery
31. Animation
32. MS JScript
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript Tutorial » History » History 
20. 1. 1. History

The History object allows you to navigate through the history of Websites that a browser has displayed.

The browser stores a history of visited URLs in a list, which the History object references.

Properties and Methods of the History Object

PropertyDescription
back()Loads the URL for the previous visited Web site
currentRefers to the current URL in the history list
forward()Loads the next URL in the history list
go()Loads a URL from the history list
lengthReturns the number of entries in the history list
nextRefers to the next URL in the history list
previousRefers to the previous URL in the history list


<html>
    <head>
    <title> Using the history object to view a list of the browser history</title>
    <script language="JavaScript">
    <!--
    netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
    -->
    
    </head>
    <body>
    <script language="JavaScript">
    <!--
    for (i=0; i<history.length; i++){
       document.writeln(window.history.previous);
    }
    //End Hide -->
    </script>
    </body>
    </html>
20. 1. History
20. 1. 1. History
20. 1. 2. History.back()
20. 1. 3. History.current
20. 1. 4. History.forward()
20. 1. 5. History.go()
20. 1. 6. History.go(-2)
20. 1. 7. History.length
20. 1. 8. History.next
20. 1. 9. History.previous
20. 1. 10. Simulated Back and Forward Buttons by using the history object
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.