在其中一个要求中,我们必须在 html 文档中构建许多表,并且顶部的表将包含行(类型为锚链接),每行都指向第二个表的标题,直到最后一个表。顶表的第一行必须有锚标记以指向第二个表的表头,顶表的第二行应指向文档中第三个表的表头,顶表的最后一行应指向文档的表头html 文档中的最后一个表。
如何做到这一点?
在其中一个要求中,我们必须在 html 文档中构建许多表,并且顶部的表将包含行(类型为锚链接),每行都指向第二个表的标题,直到最后一个表。顶表的第一行必须有锚标记以指向第二个表的表头,顶表的第二行应指向文档中第三个表的表头,顶表的最后一行应指向文档的表头html 文档中的最后一个表。
如何做到这一点?
This will do the job, think is quite clear how it works. Simply Link points to id of the table.
<html>
<header></header>
<body>
<table>
<caption>Main Table</caption>
<tr>
<th>ID</th>
<th>Link</th>
</tr>
<tr>
<td>1</td>
<td><a href="#table1">Table 1</a></td>
</tr>
<tr>
<td>2</td>
<td><a href="#table2">Table 2</a></td>
</tr>
</table>
<table id="table1">
<caption>Table 1</caption>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</table>
<table id="table2">
<caption>Table 2</caption>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</table>
</body>
</html>