如何在HTML中嵌入其他的HTML文件。
如何在HTML中嵌入其他的HTML文件。
解决方案1:iframe标签
iframe 元素用来嵌入另一个文档。例如,你可以使用 iframe 来在你的 HTML 页面中嵌入另一个 HTML 页面。
<iframe src="page.html" width="200" height="200">
Your browser does not support iframes.
</iframe>
据说安全性上差点.要设置好安全问题.
解决方案2:object标签
object 元素可以嵌入一个对象,例如图像、音频、视频、Java applets、ActiveX、PDF 以及其他的 HTML 页面。
<object type="text/html" data="page.html" width="200" height="200"></object>
解决方案3:embed标签
embed 元素用来嵌入内容,比如插件和媒体。
<embed src="page.html" width="200" height="200" type="text/html">
解决方案4:script标签
script 元素用来嵌入由 JavaScript 或 JSON 编写的程序。
<script src="page.html"></script>
注意:以上的 src 属性值 "page.html" 应该替换为你想要嵌入的 HTML 文件的路径。
以上就是如何在 HTML 中嵌入其他的 HTML 文件的方法。
本文由网友投稿发布,本站免一切责任,如果侵权请联系站长删除处理.
全文详见:http://it-club.cn/post/744.html