我正在嘗試在我的index.htm文件中添加footer.htm,但目前爲止我無法使用。這是我的代碼。如何在html中包含html文件
的index.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>This is my index page!</p>
<!--#include virtual="footer.htm" -->
<!--#include file="footer.htm" -->
</body>
</html>
footer.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>This is my footer</p>
</body>
</html>
我已經嘗試過的Visual Studio 2010中內置的Web服務器,我也通過Apache,但沒有運氣whatsoever.Please注試過了我我正在試試html5
不,你不是「HTML 5,嘗試它」(即HTM而不是HTML)。你的'DOCTYPE'是用於XHTML 1.0 Transitional,而不是HTML 5. – derekerdmann
如果include是這種情況,你想在index.htm中顯示你的footer.htm,iframe會爲你做這個工作,放置'
我可能不會使用html5,但目標是模式是html5 ..也可以用您的解決方案我可以使用iframe來達到目的..您的建議是什麼?我想在每個頁面上包含頁腳和頁眉......我應該使用iframe還是其他內容? – Ghaffar