We'll start with the basics - a very simple HTML page.
Let's alter the font colour of the text within the <div>. In InternetExplorer, this would typically be accomplished with
Here's the code I would use in Mozilla:
An explanation is in order here. Under the new DOM, every element in anHTML document is part of a "tree", and you can access each and everyelement by navigating through the tree "branches" until you reach thecorresponding "node". Given that, here's my representation of the HTMLdocument above, in "tree" form.
Now, to get to the <div>, I need to: 1. start at the top ("document"); 2. move down to the main branch - the <html> tag, or"document.childNodes[0]"; 3. then to the second sub-branch - the <body> tag or"document.childNodes[0].childNodes[1]"; 4. then to the <div> - "document.childNodes[0].childNodes[1].childNodes[0]"; At this point, I have successfully navigated my way to the <div> element inthe document tree. A quick way of verifying this is to use an alert() onthe object
which displays the name of the tag - DIV - in an alert box. At this point, I can begin futzing with object attributes - in the exampleabove, I've altered the "color" style attribute. Don't worry about this forthe moment; simply verify that you have understood the manner in which Inavigated through the document tree to reach the DIV.
blog comments powered by Disqus |
|
|