Traversing an HTML table with JavaScript and DOM Interfaces - Web APIs 编辑
Introduction
This article is an overview of some powerful, fundamental DOM level 1 methods and how to use them from JavaScript. You will learn how to create, access and control, and remove HTML elements dynamically. The DOM methods presented here are not specific to HTML; they also apply to XML. The demonstrations provided here will work fine in any modern browser, including all versions of Firefox and IE 5+.
The DOM methods presented here are part of the Document Object Model (Core) level 1 specification. DOM level 1 includes both methods for generic document access and manipulation (DOM 1 Core) as well as methods specific to HTML documents (DOM 1 HTML).
Example: Creating an HTML table dynamically (Sample1.html)
HTML
<input type="button" value="Generate a table." onclick="generate_table()">
JavaScript
function generate_table() {
// get the reference for the body
var body = document.getElementsByTagName("body")[0];
// creates a <table> element and a <tbody> element
var tbl = document.createElement("table");
var tblBody = document.createElement("tbody");
// creating all cells
for (var i = 0; i < 2; i++) {
// creates a table row
var row = document.createElement("tr");
for (var j = 0; j < 2; j++) {
// Create a <td> element and a text node, make the text
// node the contents of the <td>, and put the <td> at
// the end of the table row
var cell = document.createElement("td");
var cellText = document.createTextNode("cell in row "+i+", column "+j);
cell.appendChild(cellText);
row.appendChild(cell);
}
// add the row to the end of the table body
tblBody.appendChild(row);
}
// put the <tbody> in the <table>
tbl.appendChild(tblBody);
// appends <table> into <body>
body.appendChild(tbl);
// sets the border attribute of tbl to 2;
tbl.setAttribute("border", "2");
}
Note the order in which we created the elements and the text node:
- First we created the
<table>
element. - Next, we created the
<tbody>
element, which is a child of the<table>
element. - Next, we used a loop to create the
<tr>
elements, which are children of the<tbody>
element. - For each
<tr>
element, we used a loop to create the<td>
elements, which are children of<tr>
elements. - For each
<td>
element, we then created the text node with the table cell's text.
Once we have created the <table>
, <tbody>
, <tr>
, and <td>
elements, and then the text node, we then append each object to its parent in the opposite order:
- First, we attach each text node to its parent
<td>
element usingcell.appendChild(cellText);
- Next, we attach each
<td>
element to its parent<tr>
element usingrow.appendChild(cell);
- Next, we attach each
<tr>
element to the parent<tbody>
element usingtblBody.appendChild(row);
- Next, we attach the
<tbody>
element to its parent<table>
element usingtbl.appendChild(tblBody);
- Next, we attach the
<table>
element to its parent<body>
element usingbody.appendChild(tbl);
Remember this technique. You will use it frequently in programming for the W3C DOM. First, you create elements from the top down; then you attach the children to the parents from the bottom up.
Here's the HTML markup generated by the JavaScript code:
... <table border="2"> <tbody> <tr><td>cell is row 0 column 0</td><td>cell is row 0 column 1</td></tr> <tr><td>cell is row 1 column 0</td><td>cell is row 1 column 1</td></tr> </tbody> </table> ...
Here's the DOM object tree generated by the code for the <table>
element and its child elements:
You can build this table and its internal child elements by using just a few DOM methods. Remember to keep in mind the tree model for the structures you are planning to create; this will make it easier to write the necessary code. In the <table>
tree of Figure 1 the element <table>
has one child: the element <tbody>
. <tbody>
has two children. Each <tbody>
's child (<tr>
) has two children (<td>
). Finally, each <td>
has one child: a text node.
Example: Setting the background color of a paragraph
getElementsByTagName(tagNameValue)
is a method available in any DOM Element
or the root Document
element. When called, it returns an array with all of the element's descendants matching the tag name. The first element of the list is located at position [0]
in the array.
HTML
<body>
<input type="button" value="Set paragraph background color" onclick="set_background()">
<p>hi</p>
<p>hello</p>
</body>
JavaScript
function set_background() {
// get a list of all the body elements (there will only be one),
// and then select the zeroth (or first) such element
myBody = document.getElementsByTagName("body")[0];
// now, get all the p elements that are descendants of the body
myBodyElements = myBody.getElementsByTagName("p");
// get the second item of the list of p elements
myP = myBodyElements[1];
myP.style.background = "rgb(255,0,0)";
}
In this example, we set the myP
variable to the DOM object for the second p
element inside the body:
- First, we get a list of all the body elements via
myBody = document.getElementsByTagName("body")[0]
Since there is only onebody
element in any valid HTML document, this list will have only one item, which we retrieve by selecting the first element in that list using[0]
. - Next, we get all the
p
elements that are descendants of thebody
:myBodyElements = myBody.getElementsByTagName("p");
- Finally, we get the second item from the list of
p
elements viamyP = myBodyElements[1];
Once you have gotten the DOM object for an HTML element, you can set its properties. For example, if you want to set the style background color property, you just add:
myP.style.background = "rgb(255,0,0)"; // setting inline STYLE attribute
Creating TextNodes with document.createTextNode("..")
Use the document object to invoke the createTextNode
method and create your text node. You just need to pass the text content. The return value is an object that represents the text node.
myTextNode = document.createTextNode("world");
This means that you have created a node of the type TEXT_NODE
(a piece of text) whose text data is "world"
, and myTextNode
is your reference to this node object. To insert this text into your HTML page, you need to make this text node a child of some other node element.
Inserting Elements with appendChild(..)
So, by calling myP.appendChild(node_element)
, you are making the element a new child of the second <p>
element.
myP.appendChild(myTextNode);
After testing this sample, note that the words hello and world are together: helloworld. So visually, when you see the HTML page it seems like the two text nodes hello and world are a single node, but remember that in the document model, there are two nodes. The second node is a new node of type TEXT_NODE
, and it is the second child of the second <p>
tag. The following figure shows the recently created Text Node object inside the document tree.
createTextNode()
and appendChild()
is a simple way to include white space between the words hello and world. Another important note is that the appendChild
method will append the child after the last child, just like the word world has been added after the word hello. So if you want to append a Text Node between hello and world, you will need to use insertBefore
instead of appendChild
.
Creating New Elements with the document object and the createElement(..) method
You can create new HTML elements or any other element you want with createElement
. For example, if you want to create a new <p>
element as a child of the <body>
element, you can use the myBody
in the previous example and append a new element node. To create a node call document.createElement("tagname")
. For example:
myNewPTAGnode = document.createElement("p"); myBody.appendChild(myNewPTAGnode);
Removing nodes with the removeChild(..) method
Nodes can be removed. The following code removes text node myTextNode
(containing the word "world") from the second <p>
element, myP
.
myP.removeChild(myTextNode);
Text node myTextNode
(containing the word "world") still exists. The following code attaches myTextNode
to the recently created <p>
element, myNewPTAGnode
.
myNewPTAGnode.appendChild(myTextNode);
The final state for the modified object tree looks like this:
Creating a table dynamically (back to Sample1.html)
For the rest of this article we will continue working with sample1.html. The following figure shows the table object tree structure for the table created in the sample.
Reviewing the HTML Table structure
Creating element nodes and inserting them into the document tree
The basic steps to create the table in sample1.html are:
- Get the body object (first item of the document object).
- Create all the elements.
- Finally, append each child according to the table structure (as in the above figure). The following source code is a commented version for the sample1.html.
At the end of the start
function, there is a new line of code. The table's border
property was set using another DOM method, setAttribute()
. setAttribute()
has two arguments: the attribute name and the attribute value. You can set any attribute of any element using the setAttribute
method.
<head>
<title>Sample code - Traversing an HTML Table with JavaScript and DOM Interfaces</title>
<script>
function start() {
// get the reference for the body
var mybody = document.getElementsByTagName("body")[0];
// creates <table> and <tbody> elements
mytable = document.createElement("table");
mytablebody = document.createElement("tbody");
// creating all cells
for(var j = 0; j < 3; j++) {
// creates a <tr> element
mycurrent_row = document.createElement("tr");
for(var i = 0; i < 4; i++) {
// creates a <td> element
mycurrent_cell = document.createElement("td");
// creates a Text Node
currenttext = document.createTextNode("cell is row " + j + ", column " + i);
// appends the Text Node we created into the cell <td>
mycurrent_cell.appendChild(currenttext);
// appends the cell <td> into the row <tr>
mycurrent_row.appendChild(mycurrent_cell);
}
// appends the row <tr> into <tbody>
mytablebody.appendChild(mycurrent_row);
}
// appends <tbody> into <table>
mytable.appendChild(mytablebody);
// appends <table> into <body>
mybody.appendChild(mytable);
// sets the border attribute of mytable to 2;
mytable.setAttribute("border","2");
}
</script>
</head>
<body onload="start()">
</body>
</html>
Manipulating the table with DOM and CSS
Getting a text node from the table
This example introduces two new DOM attributes. First it uses the childNodes
attribute to get the list of child nodes of mycel. The childNodes
list includes all child nodes, regardless of what their name or type is. Like getElementsByTagName()
, it returns a list of nodes.
The differences are that (a) getElementsByTagName()
only returns elements of the specified tag name; and (b) getElementsByTagName()
returns descendants at any level, not just immediate children.
Once you have the returned list, use [x]
method to retrieve the desired child item. This example stores in myceltext the text node of the second cell in the second row of the table.
Then, to display the results in this example, it creates a new text node whose content is the data of myceltext
, and appends it as a child of the <body>
element.
If your object is a text node, you can use the data attribute and retrieve the text content of the node.
mybody = document.getElementsByTagName("body")[0];
mytable = mybody.getElementsByTagName("table")[0];
mytablebody = mytable.getElementsByTagName("tbody")[0];
myrow = mytablebody.getElementsByTagName("tr")[1];
mycel = myrow.getElementsByTagName("td")[1];
// first item element of the childNodes list of mycel
myceltext=mycel.childNodes[0];
// content of currenttext is the data content of myceltext
currenttext=document.createTextNode(myceltext.data);
mybody.appendChild(currenttext);
Getting an attribute value
At the end of sample1 there is a call to setAttribute
on the mytable
object. This call was used to set the border property of the table. To retrieve the value of the attribute, use the getAttribute
method:
mytable.getAttribute("border");
Hiding a column by changing style properties
Once you have the object in your JavaScript variable, you can set style
properties directly. The following code is a modified version of sample1.html in which each cell of the second column is hidden and each cell of the first column is changed to have a red background. Note that the style
property was set directly.
<html>
<body onload="start()">
</body>
<script>
function start() {
var mybody = document.getElementsByTagName("body")[0];
mytable = document.createElement("table");
mytablebody = document.createElement("tbody");
for(var row = 0; row < 2; row++) {
mycurrent_row=document.createElement("tr");
for(var col = 0; col < 2; col++) {
mycurrent_cell = document.createElement("td");
currenttext = document.createTextNode("cell is: " + row + col);
mycurrent_cell.appendChild(currenttext);
mycurrent_row.appendChild(mycurrent_cell);
// set the cell background color
// if the column is 0. If the column is 1 hide the cell
if (col === 0) {
mycurrent_cell.style.background = "rgb(255,0,0)";
} else {
mycurrent_cell.style.display = "none";
}
}
mytablebody.appendChild(mycurrent_row);
}
mytable.appendChild(mytablebody);
mybody.appendChild(mytable);
}
</script>
</html>
Original Document Information
- Author(s)
- Marcio Galli
- Migrated from
- http://web.archive.org/web/20000815054125/http://mozilla.org/docs/dom/technote/tn-dom-table/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论