How TO - Include HTML
Learn how to include HTML snippets in HTML.
The HTML
Save the HTML you want to include in an .html file:
content.html
<a href="google_maps.shtml">谷歌地图</a><br>
<a href="css_animate_buttons.shtml">动画按钮</a><br>
<a href="css_modals.shtml">模态框</a><br>
<a href="js_animate.shtml">Animations</a><br>
<a href="js_progressbar.shtml">进度条</a><br>
<a href="css_dropdown.shtml">悬停下拉菜单</a><br>
<a href="js_dropdown.shtml">点击下拉列表</a><br>
<a href="css_table_responsive.shtml">响应表</a><br>
Include the HTML
Including HTML is done by using a w3-include-html attribute:
Example
<div w3-include-html="content.html"></div>
Add the JavaScript
HTML includes are done by JavaScript.
Example
<script>
function includeHTML() {
var z, i, elmnt, file, xhttp;
/* Loop through a collection of all HTML elements: */
z =
document.getElementsByTagName("*");
for (i = 0; i < z.length; i++)
{
elmnt = z[i];
/*search for
elements with a certain atrribute:*/
file =
elmnt.getAttribute("w3-include-html");
if (file) {
/* Make an HTTP request using the attribute value as the file name: */
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {elmnt.innerHTML = this.responseText;}
if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
/* Remove the attribute, and call this function once more: */
elmnt.removeAttribute("w3-include-html");
includeHTML();
}
}
xhttp.open("GET", file, true);
xhttp.send();
/* Exit the function: */
return;
}
}
}
</script>
Call includeHTML() at the bottom of the page:
Include Many HTML Snippets
You can include any number of HTML snippets: