如何 - 包含 HTML
学习如何在 HTML 中包含 HTML 代码片段。
HTML
将您要包含的 HTML 代码保存在 .html 文件中
content.html
<a href="howto_google_maps.asp">Google 地图</a><br>
<a href="howto_css_animate_buttons.asp">动画按钮</a><br>
<a href="howto_css_modals.asp">模态框</a><br>
<a href="howto_js_animate.asp">动画</a><br>
<a href="howto_js_progressbar.asp">进度条</a><br>
<a href="howto_css_dropdown.asp">悬停下拉菜单</a><br>
<a href="howto_js_dropdown.asp">点击下拉菜单</a><br>
<a href="howto_css_table_responsive.asp">响应式表格</a><br>
包含 HTML
包含 HTML 是通过使用 w3-include-html 属性来实现的
示例
<div w3-include-html="content.html"></div>
添加 JavaScript 代码
HTML 包含通过 JavaScript 实现。
示例
<script>
function includeHTML() {
var z, i, elmnt, file, xhttp;
/* 循环遍历所有 HTML 元素: */
z = document.getElementsByTagName("*");
for (i = 0; i < z.length; i++) {
elmnt = z[i];
/* 搜索具有特定属性的元素: */
file = elmnt.getAttribute("w3-include-html");
if (file) {
/* 使用属性值作为文件名发起 HTTP 请求: */
xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {elmnt.innerHTML = this.responseText;}
if (this.status == 404) {elmnt.innerHTML = "页面未找到。";}
/* 移除属性,并再次调用此函数: */
elmnt.removeAttribute("w3-include-html");
includeHTML();
}
}
xhttp.open("GET", file, true);
xhttp.send();
/* 退出函数: */
return;
}
}
}
</script>
在页面底部调用 includeHTML() 函数
包含多个 HTML 片段
您可以包含任意数量的 HTML 片段