如何在html中添加另一个表中的表行

时间:2017-03-08 20:11:09

标签: html html5

我有几个HTML页面,其中包含单行表,其中包含我想要整理到新HTML文件中的单个汇总表中的信息。每个单行表都存在于自己的HTML文件中,看起来像这样。

<table style="width:100%">
    <tr>
        <th>Heading1</th>
        <th>Heading2</th>
        <th>Heading3</th>
    </tr>

<div id="Row1_to_include">
    <tr>
        <td>Value1</td>    
        <td>Value2</td>
        <td>Value3</td>    
    </tr> </div>

我为摘要文件尝试了类似下面的iframe语句,但它不起作用。我有什么选择让这项工作成功?平台是apache服务器上的html。

<table style="width:100%">
    <tr>
        <th>Heading1</th>
        <th>Heading2</th>
        <th>Heading3</th>
    </tr>

<iframe> src="file1.html#Row1_to_include" </iframe>
<iframe> src="file2.html#Row2_to_include" </iframe>
<iframe> src="file3.html#Row3_to_include" </iframe>

</table>

0 个答案:

没有答案