|
|
|
An Introduction to Dynamic HTML with JavascriptHow to Add Dynamic Content to a Web Page Using Javascript
This article show how to add dynamic content to a web page by using just a little bit of Javascript.
Every web page in the world uses HTML (the Hyper Text Markup Language) - it's a formatting language that tells a web browser whether the contents of a web page should be in bold, large or small, tabulated or in paragraphs. However, HTML is a static language - once it's been loaded into a web page then it won't change; unless, of course, it's Dynamic HTML. Dynamic HTML works because of the fact that when web page is viewed in a web browser (such as Microsoft Internet Explorer or Mozilla Firefox) it is not just formatted text - it is actually a set of objects, a set of objects that can be manipulated using a programming language such as Javascript; and the most important of the objects to is the document. Using Javascript to Work with a Web Page DocumentThe document is the web page itself, and with Javascript it is possible to modify the title of the web page: document.title = "A Dynamic Web Page";
The contents of that web page can also be created by using Javascript code; for instance the web page can be written to by using the document's write method: //Create a heading
document.write ("<h1 id=h1>Hello World</h1>");
//Create a paragraph with text in it
document.write ("<p id=p1>This is a dynamic web page.</p>");
//Create an empty paragraph
document.write ("<p id=p2></p>");
This code actually creates some additional objects (h1, p1 and p2) and they can now be accessed using Javascript code. Accessing Objects within a Web Page DocumentEach object that's created must be given a unique ID, and once that has been done then each object can be accessed using the document's getElementById method; for example, the code above creates an empty paragraph (p2) - the contents of that paragraph can be changed by using the getElementById method to access the paragraph and then updating it's innerHTML property: var p2 = document.getElementById ('p2');
p2.innerHTML = "Isn't this exciting?";
Dealing with Events in a Dynamic Web PageEach object in a web page has a number of events associated with it - these events are things such as:
These events can then be used to run Javascript functions - in this example the text in a paragraph changes color and is displayed in a second paragraph: <p id=p3
onmouseover="overme('p3')"
onmouseout="away('p3')"
>An example of a web page event</p>
<p id=p4></p>
<script>
var p4 = document.getElementById('p4');
function oversee(me) {
var object = document.getElementById(me);
object.style.color = "blue";
p4.innerHTML = "Your mouse is over '" + object.innerHTML + "'";
}
function away(me) {
var object = document.getElementById(me);
object.style.color = "black";
p4.innerHTML = "";
}
</script>
ConclusionDynamic HTML using Javascript is not difficult to implement, but those simple techniques can produce an impressive web page - something much more interesting than just boring old static HTML.
The copyright of the article An Introduction to Dynamic HTML with Javascript in Javascript/Java Programming is owned by Mark Alexander Bain. Permission to republish An Introduction to Dynamic HTML with Javascript in print or online must be granted by the author in writing.
|
|
|
|
|
|
|
|