提问人:jiggy1965 提问时间:5/31/2016 更新时间:5/31/2016 访问量:155
将外部 html 文件包含到另一个 html 文件中的最佳方法是什么?
What is the best way to include an external html file into another html file?
问:
当我有一个基础 html 文件,我想在其中嵌入一些外部 html 文件作为投资组合页面时,嵌入这些外部 html 文件的最佳方法是什么?我现在使用 iframe,但我读到这不是首选方式?还有哪些其他选择,哪一个是最好的?
答:
1赞
Andrew Pay
5/31/2016
#1
大多数现代网站都实现了服务器端框架,例如 php 或 asp.net,该框架可以为每个页面组装最终的 HTML 并将其一起输出
iFrame 的唯一问题是它会导致到服务器的额外往返,因为客户端必须单独加载每个帧,但如果您无权访问任何服务器端脚本,那么任何其他解决方案都会执行相同的操作
评论