12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
- "http://www.w3.org/TR/REC-html40/strict.dtd">
- <HEAD>
- <SCRIPT src=tableDom.js>
- </SCRIPT>
- <SCRIPT>
- function doIt() {
- insertCellAt(0, 1, 1, 1);
- insertCellAt(0, 1, 1, 1);
- insertCellAt(1, 1, 1, 1);
- insertCellAt(1, 1, 1, 1);
- }
- </SCRIPT>
- </HEAD>
- <BODY onload="doIt()">
- <table bgcolor=orange border>
- <tr>
- <td>c11</td><td rowspan ="0">c12</td>
- </tr>
- <tr>
- <td>c21</td>
- </tr>
- <tr>
- <td>c31</td>
- </tr>
- </table>
- </BODY></HTML>
|