开发者

Embed another page in a HTML file using the embed tag?

开发者 https://www.devze.com 2023-03-24 07:33 出处:网络
I currently have a singe HTML file (sitemap.html) that I am embeding (Using the embed tag) on all the pages of my website so that I only need to update that one file to update the navigation links on

I currently have a singe HTML file (sitemap.html) that I am embeding (Using the embed tag) on all the pages of my website so that I only need to update that one file to update the navigation links on all of my pages. The problem is that this only works in certain browsers (Chrome/IE8/9) And not others (Most notably Firefox).

Is there another way to do this that is more browser compatible?

P.S. H开发者_运维百科ere is a link to my actual site so you can see (the source) for yourself: http://fenrirmedia.dyndns.org/


A great way, I've been using a lot before I started using PHP was this:

<!--#include virtual="/sitemap.html"--> for absolute paths
and
<!--#include file="sitemap.html"--> for relative paths.

It should be working in all browsers

0

精彩评论

暂无评论...
验证码 换一张
取 消