如何包含 HTML
学习如何在 HTML 中包含 HTML 片段。
HTML
将要包含的 HTML 保存到 .html 文件中:
content.html
<a href="howto_google_maps.asp">Google Maps</a><br> <a href="howto_css_animate_buttons.asp">Animated Buttons</a><br> <a href="howto_css_modals.asp">Modal Boxes</a><br> <a href="howto_js_animate.asp">Animations</a><br> <a href="howto_js_progressbar.asp">Progress Bars</a><br> <a href="howto_css_dropdown.asp">Hover Dropdowns</a><br> <a href="howto_js_dropdown.asp">Click Dropdowns</a><br> <a href="howto_css_table_responsive.asp">Responsive Tables</a><br>
รวม HTML
ใช้ w3-include-html
แบบคุณสมบัติเพื่อรวม 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 = "Page not found.";} /* ลบคุณสมบัติ และเรียกฟังก์ชันนี้อีกครั้ง: */ elmnt.removeAttribute("w3-include-html"); includeHTML(); } } xhttp.open("GET", file, true); xhttp.send(); /* ออกจากฟังก์ชัน: */ return; } } } </script>
โรงรับในท้ายของหน้าเว็บ includeHTML()
:
ตัวอย่าง
<script> includeHTML(); </script>
เพิ่มเนื้อหา HTML หลายชิ้น
คุณสามารถที่จะเพิ่มเนื้อหา HTML ทุกชิ้นที่คุณต้องการ:
ตัวอย่าง
<div w3-include-html="h1.html"></div> <div w3-include-html="content.html"></div>