blob: b79e75dd59339f3cbec8d1a6c64b9caa631691d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<HEAD>
<SCRIPT src=tableDom.js>
</SCRIPT>
<SCRIPT>
function doIt() {
var table = document.getElementsByTagName("TABLE")[0];
var tbody = document.createElement("TBODY", null);
var row = document.createElement("TR", null);
appendCell(row, 2, 1);
appendCell(row, 1, 1);
tbody.appendChild(row);
var refTbody = document.getElementsByTagName("TBODY")[0];
table.insertBefore(tbody, refTbody);
}
</SCRIPT>
</HEAD>
<BODY onload="doIt()">
<table bgcolor=orange border>
<tbody>
<tr>
<td>c11</td><td>c12</td>
</tr>
</tbody>
</table>
</BODY></HTML>
|