我想找到一種方法,包括常見的HTML語句到我的HTML頁面。 在下面的示例中,我的網頁中的所有頁面的 都具有相同的「頁腳部分」和「公告」。 我知道它看起來並不多,但我想將所有 語句保留在「頁腳部分」和「公告」中的單獨文件中,並找到將它們包括在所有頁面中的某種方式。 我知道我可以使用JavaScript直接寫入頁面,但是我希望在 的所有頁面中都沒有啓用腳本的瀏覽器。 我認爲'鏈接'可能會做到這一點,但它不能在身體中使用。 我知道這個例子可能看起來並不多,但我想知道在開始製作更復雜的網站之前是否以及如何做到這一點 。包括爲共同的HTML
感謝 雷尼
原文: 的mypage.html
<body class = "Screen">
<div class = "Page">
<div class = "Header Section">
</div>
<div class = "Content Section">
</div>
<div class = "Footer Section">
<div class = "EMail">
<a href = "mailto:Support [[email protected]]
?subject=Inquiry">
[email protected]
</a>
</div>
<div class = "Organization">
<ul>
<li>Company</li>
<li>City, ST</li>
<li>(123)456-7890</li>
</ul>
</div>
<div class = "Copyright">
Copyright ©
2007 Company.<br>
All rights reserved.
</div>
</div>
<noscript>
<div class = "Bulletin"
id = "Notice">
<b>Notice:</b> This Web-Page uses Active scripting!
Active scripting is not enabled in your web browser.
</div>
</noscript>
</body>
我想共同聲明移到單獨的文件。
文件:MyFooter.html
<div class = "Footer Section">
<div class = "EMail">
<a href = "mailto:Support [[email protected]]
?subject=Inquiry">
[email protected]Company.com
</a>
</div>
<div class = "Organization">
<ul>
<li>Company</li>
<li>City, ST</li>
<li>(123)456-7890</li>
</ul>
</div>
<div class = "Copyright">
Copyright ©
2007 Company.<br>
All rights reserved.
</div>
文件:MyBulletin.html
<noscript>
<div class = "Bulletin"
id = "Notice">
<b>Notice:</b> This Web-Page uses Active scripting!
Active scripting is not enabled in your web browser.
</div>
</noscript>
然後在我的mypage.html文件有一些辦法,包括其他人。
<body class = "Screen">
<div class = "Page">
<div class = "Header Section">
</div>
<div class = "Content Section">
</div>
<<Some way to Include: MyFooter.html>>
</div>
<<Some way to Include: MyBulletin.html>>
</body>