Difference between revisions of "JavaScript Document Object"

From Techotopia
Jump to: navigation, search
(Changing the Document Colors)
(Getting a list of objects in a document)
Line 169: Line 169:
 
=== Getting a list of objects in a document ===
 
=== Getting a list of objects in a document ===
  
A typical web page can contain a number of other object types, such as links, anchors, images and Java applets. A number of the proerties listed in the table above consist of arrays containing a list of objects of a particular type (for details on arrays see [[
+
A typical web page can contain a number of other object types, such as links, anchors, images and Java applets. A number of the proerties listed in the table above consist of arrays containing a list of objects of a particular type (for details on arrays see [[JavaScript Arrays]]) which can be accessed to get a list of objects present in a document. For example the ''links'' property can be used to obtain a list of Link objects in the current document:
 +
 
 +
<pre>
 +
 
 +
<html>
 +
<head>
 +
<title>JavaScript Document Object Example</title>
 +
</head>
 +
 
 +
<body>
 +
<p>
 +
Sample text to show color change
 +
</p>
 +
<a href="http://www.amazon.com">Buy more books</a>
 +
<a href="http://www.yahoo.com">Stop making Google rich</a>
 +
 
 +
for (i in document.links)
 +
{
 +
        document.write( document.links[i] + "<br>" );
 +
}
 +
</script>
 +
 
 +
</form>
 +
</body>
 +
</html>
 +
 
 +
</pre>
 +
 
 +
As one might expect the JavaScript in the above HTMl file outputs the following for the two links found in the document:
 +
 
 +
<pre>
 +
 
 +
http://www.amazon.com/
 +
http://www.yahoo.com/
 +
 
 +
</pre>

Revision as of 20:51, 14 May 2007

In the JavaScript Window Object chapter we looked at how perform such tasks as opening and closing browser windows and controlling the appearance and position of those windows. Whilst the window object gives us the ability to control various aspects of the browser window it does not provide us any control over the content of the window. In order to manipulate the content that appears in the browser we need to turn to the JavaScript Document object.


Contents


What is the JavaScript Document Object?

The JavaScript Document object essentially contains the HTML elements that are contained the <head> and <body> sections of a web page. It provides the hooks (via a set of object methods and properties) that enable basic changes to be made to the content of a browser window from within a JavaScript script.

The Document object gets the initial value of its title property from the HTML <title> tag and a number of color and event values from the <body> element:


<body
   [alink="activated link color"]
   [background="background image file"]
   [bgcolor="background color"]
   [link="unvisited link color"]
   [onload="page load functionName"]
   [onunload="page unload functionName"]
   [text="foreground color"]
   [vlink="visited link color"]>
</body>

It is important to note that these are only optional initial values. Regardless of whether these are declared in the <body> element they can still be set, or modified from JavaScript via the Document object.

JavaScript Document Object Methods and Properties

The JavaScript Document contains a wide range of methods and properties that are considerable use to developers. The following table lists the key methods and properties provided by the Document object:


Document Object Methods

MethodDescription
open()Opens the output stream to the document for writing
close()Closes the output stream to the document to prevent further writing
write()Appends text to the document.
writeln()Appends text to the document followed by a newline character

Document Object Properties

PropertyDescription
alinkcolorThe color to be used when displaying activated links in the document
anchorsAn array of anchor objects present in the document
appletsAn array of Java Applet objects embedded into the document
bgColorThe background color of the document
fgColorThe foreground color (i.e. the color of the text in the document)
cookieThe cookie, if aany, assosiated with the document. See Understanding JavaScript Cookies
domainThe current domain of the document
embedsAn array of objects embedded into the document
formsAn array of the Forms objects contained in the document. See JavaScript Forms and HTML
imagesAn Array of Image objects contained the document
lastModifiedThe date that the document was last modified
linkColorThe color to be used when displaying links in the document
linksAn array of links contained in the document
referrerThe URL of the document from which the current document was linked (i.e. how the visitor arrived at this page)
titleThe title of the docuemnt (corresponds to the HTML <title> tag)
URLThe URL of the current document
vlinkColorThe color to be used when displaying links in the document which have been visited by the current user

Using the JavaScript Document Object

Now that we have seen the methods and properties that are avialable with the Document object we can begin explore how to use them:

Writing text to a document

The document object open() and write() methods can be used to dynamically write text to a web page. The following example contains both some text contained in the HTML file, togetehr with some JavaScript to write additional text into the page:


<html>
<head>
<title>JavaScript Document Object Example</title>
</head>
<body>
<p>
This is a line of text specified in the HTML file
</p>
<script language="javascript" type="text/javascript">
document.open()
document.write("This is a line of text written to the document using JavaScript");
</script>

</body>
</html>

The above example will display the following in the browser window:

This is a line of text specified in the HTML file
This is a line of text written to the document using JavaScript

Changing the Document Title

Even when the title of a document has been specified using the HTML <title> tag it is possible to dynamically change the current setting using the title property of the document object. The following example intially sets the document title to JavaScript Document Object Example and provides a button which, when pressed, change sthe title to a new value:


<html>
<head>
<title>JavaScript Document Object Example</title>
</head>
<body>
<form action="">
      <input type=button value="Press to change title" onclick="document.title='hello'"/>
</form>
</body>
</html>

Changing the Document Colors

A similar approach can be used to change the colors using in the document. As outlined in the document object properties table there a number of color setting raninging from foreground and background colrs through to colors used for links (such as visited and unvisted link colors). The following example changes the foreground and background colors when the "Change colors" button is pressed:


<html>
<head>
<title>JavaScript Document Object Example</title>
<script language="javascript" type="text/javascript">

function changeColors()
{
        document.fgColor="red";
        document.bgColor="blue";
}
</script>
</head>

<body>
<p>
Sample text to show color change
</p>
<form action="">
      <input type=button value="Change colors" onclick="changeColors()"/>
</form>
</body>
</html>

Getting a list of objects in a document

A typical web page can contain a number of other object types, such as links, anchors, images and Java applets. A number of the proerties listed in the table above consist of arrays containing a list of objects of a particular type (for details on arrays see JavaScript Arrays) which can be accessed to get a list of objects present in a document. For example the links property can be used to obtain a list of Link objects in the current document:


<html>
<head>
<title>JavaScript Document Object Example</title>
</head>

<body>
<p>
Sample text to show color change
</p>
<a href="http://www.amazon.com">Buy more books</a>
<a href="http://www.yahoo.com">Stop making Google rich</a>

for (i in document.links)
{
        document.write( document.links[i] + "<br>" );
}
</script>

</form>
</body>
</html>

As one might expect the JavaScript in the above HTMl file outputs the following for the two links found in the document:


http://www.amazon.com/
http://www.yahoo.com/