1. 程式人生 > >html 中include另外一個頁面

html 中include另外一個頁面

兩個頁面     technologies.html  head.html  在  technologies.html 中使用 include

  1. <!-- #include file="head.html" -->

使用chrome 開啟 technolliges.html,頁面沒有任何顯示。原因 html不支援 include,解決方案參考:csdn: html中include方法 。參考方法將.html改成 .aspx,在technologies.aspx中開啟可以顯示 head.html中的內容。有一個未解決問題  windows 2000 IIS 中的  default.aspx 頁面不支援預設主頁面,支援default.html,暫時無法使用該方案,但可以嘗試另外一個iframe方案,iframe方案支援在html頁面中包含其它頁面。

  1. <iframeframeborder=0border=0width=300height=300src="head.htm"mce_src="head.htm"></iframe>