我可以将HTML页面链接到我的HTML页面吗? (没有iframe,HTML5)

时间:2013-12-21 21:22:51

标签: html5

我想将header.html和footer.html链接到index.html和contactme.php,以便它们都具有相同的页眉和页脚。有没有办法在没有HTML5中的iframe的情况下做到这一点?

1 个答案:

答案 0 :(得分:1)

您可以使用object element嵌入HTML文档。

请参阅example from the HTML5 (CR) spec

  

在此示例中,使用object元素将HTML页面嵌入到另一个页面中。

<figure>
 <object data="clock.html"></object>
 <figcaption>My HTML Clock</figcaption>
</figure>